summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1717-5.cs
blob: afb64cb303a10e50641aea18eb08036c8e6e19c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1717: 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;
	}
}