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
avoid using a custom sources file for the net_2_1_raw profile
[mcs.git]
/
errors
/
cs0037-3.cs
blob
379127ffd7358129a3700d3111ea15083e7ca27c
1
// cs0037-2.cs: Cannot convert null to `byte' because it is a value type
2
// Line : 7
3
4
public class
Blah
{
5
6
public enum
MyEnum
:
byte
{
7
Foo
=
null
,
8
Bar
9
}
10
11
public static void
Main
()
12
{
13
}
14
}