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

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