Files
kotlin-fork/compiler/testData/codegen/box/fir/staticImportViaInheritance.kt
T
Mikhail Glukhikh 8983e3a218 K2: correctly set importedFromObjectOrStaticData for fields
#KT-59140 Fixed
#KT-58980 Fixed
2023-06-20 14:13:21 +00:00

21 lines
270 B
Kotlin
Vendored

// TARGET_BACKEND: JVM_IR
// ISSUE: KT-59140
// FILE: pkg/Foo.java
package pkg;
abstract class CommonFoo {
public static final String BAR = "OK";
}
public class Foo extends CommonFoo {}
// FILE: test.kt
import pkg.Foo.BAR
fun box(): String {
return BAR
}