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

cs1717-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5f0bbb81cffa0bcd119e105f2ec5e137624a887 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1717.cs: 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;
    }
}