summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0219-5.cs
blob: c7c63f5233f86e8b88e8356bfe0aa2a3e2eed170 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0219: The variable `next' is assigned but its value is never used
// Line: 9
// Compiler options: -warn:3 -warnaserror

class A
{
	public static void Main ()
	{
		int n\U00000065xt = 0;
	}
}