Files
kotlin/compiler/testData/codegen/bytecodeText/inlineProtectedJavaConstantFromOtherPackage.kt

22 lines
268 B
Kotlin
Vendored

// FILE: first/Foo.java
package first;
public class Foo {
protected static final int FOO = 42;
}
// FILE: bar.kt
package second
import first.Foo
class Bar : Foo() {
fun bar() = FOO
}
// @second/BarKt.class
// 0 INVOKESTATIC
// 0 GETSTATIC
// 1 BIPUSH 42