Merge branch 'master' of http://github.com/mono/mono
[mono.git] / mcs / errors / cs1717-5.cs
1 // cs1717-5.cs: 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         public A ()
8         {
9                 int a = a = 5;
10         }
11 }