Files
codeql/cpp/ql/test/successor-tests/switchstmt/switchstmt/switchstmt.c
2018-09-23 16:23:52 -07:00

9 lines
97 B
C

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