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

cs1717-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d4fa3e4aa3431cc6bae5e198ef55e376fe6c548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1717.cs: Assignment made to same variable; did you mean to assign something else?
// Line: 9
// Compiler options: -warnaserror -warn:3

class A
{    
    void B ()
    {
	int l = 3;
	l = l;
    }
}