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-7.cs
blob
b9ee407d650adcf93cb1d7e51fea4f3abbcb0deb
1
// CS0037: Cannot convert null to `char' because it is a value type
2
// Line: 12
3
4
class
C
5
{
6
static void
Test
()
7
{
8
char
c
=
'c'
;
9
switch
(
c
)
10
{
11
case
'a'
:
12
goto case null
;
13
}
14
}
15
}