2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0128.cs
blob8d472c0b443dea7f5a26c50caf3f81a2ecafbff9
1 // cs0128.cs: A local variable named `x' is already defined in this scope
2 // Line:
4 class x {
5 static int y ()
7 int x = 1;
8 int x = 2;
10 return x + x;