Merge pull request #5444 from hifi/fix-tds-inputoutput
[mono.git] / mcs / errors / cs1717-3.cs
1 // CS1717: Assignment made to same variable; did you mean to assign something else?
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
4
5 class A
6 {    
7     int i;
8     
9     void C ()
10     {
11         i = i;
12     }
13 }