Files
codeql/cpp/ql/test/library-tests/switch/switch.cpp
2018-08-02 17:53:23 +01:00

10 lines
88 B
C++

void fn();
int f(int x) {
switch(x) {
default:
throw "error";
}
}