TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0162-8.cs
blob26139e6e157b8ce916343e9ce5caa7ed84bb0170
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;