quote only work on lambda on net_4_0
[mcs.git] / errors / cs0162-8.cs
blob7500614a55a42ced58216679aa7bc8291c1dc5b3
1 // CS0162: Unreachable code detected
2 // Line: 9
3 // Compiler options: -warnaserror -warn:2
5 class C
7 public static int Main ()
9 if (true == false)
10 return 1;
12 return 2;