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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0159-3.cs
blob
63499fc6ce5ca6e71372f1968e753e453153159e
1
// CS0159: The label `case null:' could not be found within the scope of the goto statement
2
// Line: 1
3
4
class
y
{
5
static void
Main
()
6
{
7
string
x
=
null
;
8
9
switch
(
x
){
10
case
""
:
goto case null
;
11
}
12
}
13
}
14