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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0158-6.cs
blob
6fc139af394f14e81a4fd7ecdbb0ac332ae2f6ce
1
// CS0158: The label `a' shadows another label by the same name in a contained scope
2
// Line: 11
3
4
class
Foo
5
{
6
static void
Main
()
7
{
8
int
i
=
1
;
9
goto
a
;
10
if
(
i
==
9
) {
11
a
:
12
return
;
13
}
14
a
:
15
return
;
16
}
17
}