blob: 2a72f9422d9913870a29d84a9bbd7e265acaea7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0642: Possible mistaken empty statement
// Line: 11
// Compiler options: /warnaserror /warn:3
using System;
public class C
{
public static int p = 0;
public static void Foo ()
{
if (p < 5)
;
else
Console.WriteLine ();
}
}
|