Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
kotlinAndJavaChecker
/
javaAgainstKotlin
/
UseKotlinConstInSwitch.java
blob: 5745e7c777638acbde14a63e214338a1b6dd69d8 [
file
]
public
class
UseKotlinConstInSwitch
{
public
static
void
main
(
int
i
)
{
switch
(
i
)
{
case
a
.
UseKotlinConstInSwitchKt
.
i
:
System
.
out
.
println
(
"1"
);
break
;
default
:
System
.
out
.
println
(
"2"
);
break
;
}
}
}