[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0844-3.cs
blobb352c7594ffb5b4f0152bdc270b32d652214cfbe
1 // CS0844: A local variable `top' cannot be used before it is declared. Consider renaming the local variable when it hides the member `X.top'
2 // Line: 17
4 class Symbol
8 class X
10 Symbol top;
12 internal int Enter (Symbol key, object value)
14 if (key != null) {
15 top = key;
17 object top = null;
18 return top.Count;