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

class X{
	static void Main ()
	{
		if (true);
	}
}