quote only work on lambda on net_4_0
[mcs.git] / errors / cs0844.cs
blobdc7f835a5fbe6fb10ed2a32f910c96bf09f8ab70
1 // CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the field `C.s'
2 // Line: 10
4 class C
6 string s;
8 public void Test ()
10 s = "x";
11 string s = "a";