Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0543.cs
index 9f5987c44d26deb574d2bc7013dfa45deabb1319..741277eabc543f41f2f31d1877c2d59f09caa52b 100644 (file)
@@ -1,14 +1,10 @@
-// cs0543.cs: The enumerator value `Blah.MyEnum.Bar' is too large to fit in its type `byte'
-// Line : 9
-
-public class Blah {
+// CS0543: The enumerator value `Blah.MyEnum.Bar' is outside the range of enumerator underlying type `byte'
+// Line : 8
 
+public class Blah
+{
        public enum MyEnum : byte {
                Foo = 255,
                Bar
        }
-
-       public static void Main ()
-       {
-       }
 }