Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
145b5051f737bcd07fb6d5440a722cea8ba3f98c
/
.
/
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