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

13 lines
234 B
Kotlin
Vendored

interface A {
fun b(a : Int)
}
interface B : A {}
class C1 : A {
override fun b(<!PARAMETER_NAME_CHANGED_ON_OVERRIDE!>b<!> : Int) {}
}
class C2 : B {
override fun b(<!PARAMETER_NAME_CHANGED_ON_OVERRIDE!>b<!> : Int) {}
}