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
2009-05-13 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0152.cs
blob
4d5aad769e29331cfb5837dd4c5ab8ee4ef3eca5
1
// cs0152.cs: The label `case 1:' already occurs in this switch statement
2
// Line: 9
3
class
X
{
4
void
f
(
int
i
)
5
{
6
switch
(
i
){
7
case
1
:
8
break
;
9
case
1
:
10
break
;
11
}
12
}
13
}