[FE] Read Java static field initializer lazily (KTIJ-23043)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
// test.AKotlin
|
||||
|
||||
// DISABLE_SEALED_INHERITOR_CALCULATOR
|
||||
|
||||
// FILE: AKotlin.kt
|
||||
package test
|
||||
import test.BJava.FOO
|
||||
|
||||
open class AKotlin
|
||||
|
||||
// FILE: test/BJava.java
|
||||
package test;
|
||||
|
||||
public class BJava extends AKotlin {
|
||||
public final static String FOO = "foo";
|
||||
}
|
||||
|
||||
// FILE: CKotlin.kt
|
||||
package test
|
||||
|
||||
class CKotlin: BJava()
|
||||
Reference in New Issue
Block a user