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
/
cs0031-4.cs
blob
1c7a0bf5017d42b62f2127a3a38b763bb430257b
1
// cs0031-4.cs: Constant value `256' cannot be converted to a `byte'
2
// Line : 7
3
4
public class
Blah
{
5
6
public enum
MyEnum
:
byte
{
7
Foo
=
256
,
8
Bar
9
}
10
11
public static void
Main
()
12
{
13
}
14
}