Align libgcmonosgen vcxproj with makefile.
[mono.git] / mcs / errors / cs0844-2.cs
1 // CS0844: A local variable `y' cannot be used before it is declared. Consider renaming the local variable when it hides the member `X.y'
2 // Line: 8
3
4 class X
5 {
6         static int y;
7         static void Main () {
8                 y = 10;
9                 int y = 5;
10         }
11 }