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

cs0168-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f9283b5fca14782cbc66fb0f6d0b53fb6030e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0168-3.cs: The variable `y2' is declared but never used
// Line: 9
// Compiler options: -warn:3 -warnaserror

class CompilerBugDemo
{
	public static object Wrong()
	{
		object y2;
		return null;
	}
}