"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0642-7.cs
blob2a72f9422d9913870a29d84a9bbd7e265acaea7c
1 // CS0642: Possible mistaken empty statement
2 // Line: 11
3 // Compiler options: /warnaserror /warn:3
4 using System;
5 public class C
7 public static int p = 0;
8 public static void Foo ()
10 if (p < 5)
12 else
13 Console.WriteLine ();