Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/recursionWithJavaSyntheticProperty.fir.kt
T

12 lines
198 B
Kotlin
Vendored

// FILE: X.java
public class X {
int getFoo() {return 3;}
}
// FILE: Usage.kt
class A : X() {
// TODO: DEBUG_INFO_MISSING_UNRESOLVED indicates a bug here
override fun getFoo() = foo
}