Skip to content

Commit

Permalink
Forget to commit this one.
Browse files Browse the repository at this point in the history
svn path=/trunk/mcs/; revision=149394
  • Loading branch information
marek-safar committed Jan 12, 2010
1 parent f9e73d5 commit 62763da
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions mcs/errors/cs0543.cs
Original file line number Diff line number Diff line change
@@ -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 ()
{
}
}

0 comments on commit 62763da

Please sign in to comment.