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

cs1717-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4ec968ced59e5231c16046491ec058aaf909977 (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
{    
    int i;
    
    void C ()
    {
	i = i;
    }
}