[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0162-11.cs
1 // CS0162: Unreachable code detected
2 // Line: 12
3 // Compiler options: -warnaserror -warn:2
4
5 class Program
6 {
7         static int Main ()
8         {
9                 int ctc_f = 0;
10
11                 if ((++ctc_f == 0 && false)) {
12                         return 1;
13                 }
14                 
15                 return 0;
16         }
17 }
18