Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/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

23 lines
291 B
Kotlin
Vendored

// FIR_IDENTICAL
// ISSUE: KT-59140
// FILE: pkg/Foo.java
package pkg;
abstract class CommonFoo {
public static final int BAR = 1;
}
public class Foo extends CommonFoo {}
// FILE: test.kt
import pkg.Foo
import pkg.Foo.BAR
fun test() {
val bar = BAR
val fooBar = Foo.BAR
}