Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/jvmFieldAndJavaGetter.fir.kt
T
Nikolay Lunyak e2fdb352f1 [FIR] KT-42962: Ensure the issue is not present in K2
Merge-request: KT-MR-7288
Merged-by: Nikolay Lunyak <nikolay.lunyak@jetbrains.com>
2022-10-04 12:27:17 +00:00

15 lines
225 B
Kotlin
Vendored

// MODULE: lib
// FILE: TestA.java
public abstract class TestA {
public abstract int getProp();
}
// MODULE: main(lib)
// FILE: TestB.kt
abstract class TestB : TestA() {
@JvmField
protected var prop: Int = 0
}