Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/functionAndProperty/trait.fir.kt
T

5 lines
67 B
Kotlin
Vendored

interface T {
val x: Int
get() = 1
fun getX() = 1
}