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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0543.cs
blob
741277eabc543f41f2f31d1877c2d59f09caa52b
1
// CS0543: The enumerator value `Blah.MyEnum.Bar' is outside the range of enumerator underlying type `byte'
2
// Line : 8
3
4
public class
Blah
5
{
6
public enum
MyEnum
:
byte
{
7
Foo
=
255
,
8
Bar
9
}
10
}