Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
involvesIrInterpreter
/
kt53480.kt
blob: f3cdf6b8a4e3e0ca0252cba77cc6aab6cd528148 [
file
]
// TARGET_BACKEND: JVM_IR
// FILE: J.java
public
class
J
{
public
static
int
f
()
{
return
0
;
}
}
// FILE: Main.kt
enum
class
A
{
OK
;
val x
=
J
.
f
()
}
// STOP_EVALUATION_CHECKS
fun box
():
String
{
return
A
.
OK
.
name
}