repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0158.cs
blob
f806cc616158409dff25a5e394ff495f74b9f6e8
1
// cs0158.cs: 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