2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0176-5.cs
blob26184e7a88015fe04cc6ef68308a0ab6fe2d6785
1 // CS0176: Static member `MyEnum.Foo' cannot be accessed with an instance reference, qualify it with a type name instead
2 // Line: 14
4 public enum MyEnum
6 Foo = 1
9 public class Test
11 static void Main ()
13 MyEnum theEnum = MyEnum.Foo;
14 if (theEnum == theEnum.Foo)