Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0844-4.cs
blobca0badf178c23b9f6cba61faf50223ed37214180
1 // CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the member `C.s'
2 // Line: 10
4 class C
6 const string s = "s";
8 public void Test ()
10 s = "x";
11 string s = "a";