quote only work on lambda on net_4_0
[mcs.git] / errors / cs0162-11.cs
blob1599c801879f112ba4dd3cd63e68912172864454
1 // CS0162: Unreachable code detected
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
5 class Program
7 static int Main ()
9 int ctc_f = 0;
11 if ((++ctc_f == 0 && false)) {
12 return 1;
15 return 0;