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