[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0162-8.cs
1 // CS0162: Unreachable code detected
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
4
5 class C
6 {
7         public static int Main ()
8         {
9                 if (true == false)
10                         return 1;
11                 
12                 return 2;
13         }
14 }