Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
statics
/
enumWithInheritedStaticField.kt
blob: 1047bd8795172fad5f53bb427499af1fdb3da883 [
file
] [
log
] [
blame
]
// TARGET_BACKEND: JVM
// IGNORE_LIGHT_ANALYSIS
// FILE: E.java
interface
I
{
String
result
=
"OK"
;
}
public
enum
E
implements
I
{}
// FILE: box.kt
fun box
():
String
=
E
.
result