Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
f9ccdd6fd859c17fa1544a1ffaf3bd83f6165363
/
.
/
test
/
java
/
lookupswitch-bug-2995
/
input.java
blob: 493866d499c2fc635cc485902bc98e7e3dcac901 [
file
] [
log
] [
blame
] [
raw
]
class
Main
{
static
void
test
(
int
x
)
{
switch
(
x
)
{
case
0
:
System
.
out
.
println
(
1
);
break
;
case
1
:
System
.
out
.
println
(
12
);
break
;
default
:
System
.
out
.
println
(
"default"
);
}
}
}