mirror of
https://github.com/github/codeql.git
synced 2026-07-30 15:05:38 +02:00
9 lines
91 B
JavaScript
9 lines
91 B
JavaScript
function f() {
|
|
if (cond1())
|
|
if (cond2())
|
|
return 23;
|
|
else
|
|
return 42;
|
|
return 56;
|
|
}
|