[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0128.cs
blobfcdd1627c664ac83b1d2c2156f2deca99c6770ea
1 // CS0128: A local variable named `x' is already defined in this scope
2 // Line: 8
4 class x {
5 static int y ()
7 int x = 1;
8 int x = 2;
10 return x + x;