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

cs1717-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b96d8eced2ff517d054ed00aae4e6999e6359a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1717-5.cs: Assignment made to same variable; did you mean to assign something else?
// Line: 9
// Compiler options: -warnaserror -warn:3

class A
{
	public A ()
	{
		int a = a = 5;
	}
}