Files
kotlin/compiler/testData/loadJava/kotlinAgainstCompiledJavaWithKotlin/InheritParameterName.kt
2015-05-12 19:43:17 +02:00

9 lines
112 B
Kotlin
Vendored

package test
interface B {
fun foo(kotlinName: Int)
}
abstract class ZAB : A, B
abstract class ZBA : B, A