summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1717-4.cs
blob: 89de62494d91a43aaf6b24270364f9023382298e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1717: Assignment made to same variable; did you mean to assign something else?
// Line: 9
// Compiler options: -warnaserror -warn:3

class A
{    
    static int Value;
    
    void D ()
    {
	A.Value = Value;
    }
}