Files
codeql/cpp/ql/test/library-tests/syntax-zoo/switchstmt.c
2019-08-06 14:10:25 +02:00

9 lines
97 B
C

void f(int x) {
switch (x) {
case 1:
case 2:
default:
}
;
}