Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/traitImpl/oneTrait.fir.kt
T

7 lines
65 B
Kotlin
Vendored

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