summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0642-2.cs
blob: 89f6f457786483a5838b5251d5775a84992d7bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0642: Possible mistaken empty statement
// Line: 10
// Compiler options: -warnaserror -warn:3

public class C
{
    public static void Main ()
    {
        int i= 5;
        while (i++ < 100);
            { }
    }
}