blob: 42b89c8cf07d2d0ed27322f7140b552e8a11de27 (
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
{
int i;
void C ()
{
i = i;
}
}
|