mirror of
https://github.com/github/codeql.git
synced 2026-08-05 01:43:23 +02:00
29 lines
249 B
C
29 lines
249 B
C
static void f(int x) {
|
|
switch(x) {
|
|
}
|
|
|
|
switch(x) {
|
|
default:;
|
|
}
|
|
|
|
switch(x) {
|
|
case 0:;
|
|
}
|
|
|
|
switch(x) {
|
|
default:
|
|
case 0:;
|
|
}
|
|
|
|
switch(x) {
|
|
case 0:;
|
|
case 1:;
|
|
}
|
|
|
|
switch(x) {
|
|
default:;
|
|
case 0:;
|
|
case 1:;
|
|
}
|
|
}
|