repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0543.cs
blob
9f5987c44d26deb574d2bc7013dfa45deabb1319
1
// cs0543.cs: The enumerator value `Blah.MyEnum.Bar' is too large to fit in its type `byte'
2
// Line : 9
3
4
public class
Blah
{
5
6
public enum
MyEnum
:
byte
{
7
Foo
=
255
,
8
Bar
9
}
10
11
public static void
Main
()
12
{
13
}
14
}