"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0162-20.cs
blobe2bb4dcda6fd733218f097f30d7724d13bcb3f55
1 // CS0162: Unreachable code detected
2 // Line: 14
3 // Compiler options: -warnaserror
5 using System;
7 class X
10 public static void Main ()
12 goto X;
14 bool b = false;
15 if (b) {
16 goto A;
19 return;