repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 0.41.92
[vala-gnome.git]
/
tests
/
parser
/
switch-statement.vala
blob
28f37f3de9475ae0931be099ec25c4621cbdaccb
1
void
case_with_list
() {
2
int
i
=
1
;
3
switch
(
i
) {
4
case
0
,
1
,
2
:
5
break
;
6
default
:
7
assert_not_reached
();
8
}
9
}
10
11
void
main
() {
12
case_with_list
();
13
}