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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0031-4.cs
blob
a899c7654ea03f184646371590d4bf7388d75d95
1
// CS0031: 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
}