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

8 lines
171 B
Kotlin
Vendored

interface Some {
fun test()
}
class SomeImpl : Some {
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
}