mirror of
https://github.com/github/codeql.git
synced 2026-07-13 23:38:15 +02:00
15 lines
155 B
Java
15 lines
155 B
Java
package stmts;
|
|
|
|
public class A {
|
|
public int foo(int x) {
|
|
switch(x) {
|
|
case 23:
|
|
return 42;
|
|
case 42:
|
|
return 23;
|
|
default:
|
|
return x;
|
|
}
|
|
}
|
|
}
|