Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/traitImpl/oneTrait.kt
T
2015-05-12 19:43:17 +02:00

7 lines
135 B
Kotlin
Vendored

interface T {
fun getX() = 1
}
class <!CONFLICTING_JVM_DECLARATIONS!>C<!> : T {
<!CONFLICTING_JVM_DECLARATIONS!>val x<!> = 1
}