[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0844-2.cs
blobc8272ccb10fe93bc9709270aad65b3ad49d567ea
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
4 class X
6 static int y;
7 static void Main () {
8 y = 10;
9 int y = 5;