Forget to commit this one.
authorMarek Safar <marek.safar@gmail.com>
Tue, 12 Jan 2010 10:44:01 +0000 (10:44 -0000)
committerMarek Safar <marek.safar@gmail.com>
Tue, 12 Jan 2010 10:44:01 +0000 (10:44 -0000)
svn path=/trunk/mcs/; revision=149394

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 ()
-       {
-       }
 }