mirror of
https://github.com/github/codeql.git
synced 2026-02-24 10:53:49 +01:00
9 lines
93 B
JavaScript
9 lines
93 B
JavaScript
function f() {
|
|
if (cond1())
|
|
if (cond2())
|
|
return 23;
|
|
else
|
|
return 42;
|
|
return 56;
|
|
}
|