Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / tests / exists.cs
1 using System;
2 using System.IO;
3
4 class X {
5         static int Main ()
6         {
7                 return Directory.Exists ("") == false ? 0 : 1;
8         }
9 }