Merge pull request #5353 from jonpryor/jonp-mono-api-html-ignore-class-removal
[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 }