Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0642.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 294cfea1c24058ad55d04db3347dcb6ac4018c72 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0642.cs: Possible mistaken empty statement
// Line: 7
// Compiler options: -warnaserror -warn:3

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