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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0159-8.cs
blob
3d02ac48dd9f87dc6a203ec064faed27b8923de4
1
// CS0159: The label `a:' could not be found within the scope of the goto statement
2
// Line: 9
3
4
public class
A
5
{
6
public static void
Main
()
7
{
8
int
i
=
9
;
9
goto
a
;
10
switch
(
i
) {
11
case
9
:
12
a
:
13
break
;
14
}
15
}
16
}
17