Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/accidentalOverrides/require.fir.kt
T

7 lines
71 B
Kotlin
Vendored

open class C {
val x = 1
}
interface Tr : C {
fun getX() = 1
}