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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0037-3.cs
blob
69ce4fcdee38c4db0a6732dd80d72f64c2c0ff98
1
// CS0037: 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
}