blob: 5c1aff8d86abfc758ec462f2551bbf90236d1d9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS1717: 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;
}
}
|