Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
f74f97ae8586f4e69c785e18ae7eb8fd7b2b6c8c
/
.
/
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"
);
}
}
}