a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
20 lines
284 B
C#
20 lines
284 B
C#
// CS0572: `Inner': cannot reference a type through an expression. Consider using `Outer.Inner' instead
|
|
// Line: 18
|
|
|
|
public class Outer
|
|
{
|
|
public enum Inner
|
|
{
|
|
ONE,
|
|
TWO
|
|
}
|
|
}
|
|
|
|
public class C
|
|
{
|
|
public static bool Test ()
|
|
{
|
|
Outer outer = null;
|
|
return 0 == outer.Inner.ONE;
|
|
}
|
|
} |