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
/
cs0158.cs
blob
a09f17f836e89f104649d34a297a04ef15be40d1
1
// CS0158: The label `start' shadows another label by the same name in a contained scope
2
// Line: 9
3
4
class
ClassMain
{
5
public static void
Main
() {
6
start
:
7
{
8
start
:
9
goto
start
;
10
}
11
}
12
}
13