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
* MSBuild.cs (Execute): Don't share target output items,
[mcs.git]
/
errors
/
cs0140.cs
blob
c465aaaf02165fb151c0e89e9ac6cfea91b73d4c
1
// cs0140.cs: The label `L1' is a duplicate
2
// Line: 11
3
4
namespace
cs0140Test
5
{
6
public class
A
7
{
8
static int
Main
()
9
{
10
L1
:
int
a
=
0
;
11
L1
:
a
++;
12
if
(
a
<
3
)
13
goto
L1
;
14
return
0
;
15
}
16
}
17
}