[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0162-5.cs
blob1fa8b3de5f804ac5dd656e8fcb0008574abb5890
1 // CS0162: Unreachable code detected
2 // Line: 12
3 // Compiler options: -warnaserror
5 using System;
7 public class Driver
9 public static void Main ()
11 int yyTop = 0;
12 for (; ; ++yyTop) {
13 if (yyTop > 0)
14 break;
15 else
16 return;