mirror of
https://github.com/github/codeql.git
synced 2026-04-02 21:58:19 +02:00
11 lines
108 B
JavaScript
11 lines
108 B
JavaScript
function f() {
|
|
if (cond1()) {
|
|
if (cond2()) {
|
|
return 23;
|
|
} else {
|
|
return 42;
|
|
}
|
|
}
|
|
return 56;
|
|
}
|