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
/
cs1522.cs
blob
ad7212193014b25d679c8959c384ff6bf000ccc0
1
// cs1522.cs: Empty switch block
2
// Line: 9
3
// Compiler options: -warnaserror
4
5
class
E
6
{
7
public static void
Method
(
int
i
)
8
{
9
switch
(
i
) {}
10
}
11
}