[amd64] Save missing register
[mono.git] / mcs / errors / cs0128.cs
1 // CS0128: A local variable named `x' is already defined in this scope
2 // Line: 8
3
4 class x {
5         static int y ()
6         {
7                 int x = 1;
8                 int x = 2;
9
10                 return x + x;
11         }
12 }