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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1525-8.cs
blob
a87c0fc91eba84fd746c3a73f543c71a27d80602
1
// CS1525: Unexpected symbol `i', expecting `}', `case', or `default:'
2
// Line: 11
3
4
class
X
{
5
6
static void
Main
()
7
{
8
int
i
=
0
;
9
10
switch
(
i
){
11
i
=
4
;
12
}
13
}
14
}