mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
31 lines
256 B
JavaScript
31 lines
256 B
JavaScript
switch (
|
|
x)
|
|
{
|
|
default:
|
|
break;
|
|
case
|
|
23:
|
|
x
|
|
+=
|
|
19;
|
|
}
|
|
|
|
function
|
|
f()
|
|
{
|
|
switch(
|
|
x)
|
|
{
|
|
case
|
|
0:
|
|
return
|
|
23;
|
|
default:
|
|
return
|
|
42;
|
|
case
|
|
1:
|
|
return
|
|
56;
|
|
}
|
|
} |