blob: 7c7891da9566796034a41747e3d82943dcc8e87a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0844: A local variable `s' cannot be used before it is declared. Consider renaming the local variable when it hides the member `C.s'
// Line: 10
class C
{
string s;
public void Test ()
{
s = "x";
string s = "a";
}
}
|