Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs0844.cs
blob7c7891da9566796034a41747e3d82943dcc8e87a
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 string s;
8 public void Test ()
10 s = "x";
11 string s = "a";