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
resync
[mcs.git]
/
errors
/
cs0153.cs
blob
139fa9a9a73ede8a9a69708a73b1f814511f4623
1
// cs0153.cs: A goto case is only valid inside a switch statement
2
// Line:
3
class
X
{
4
void
Main
()
5
{
6
goto default
;
7
}
8
}