repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
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
}