Files
kotlin/compiler/testData/loadJava/kotlinAgainstCompiledJavaWithKotlin/InheritParameterName.kt
Alexander Udalov 888a6c0c9b Add tests on Kotlin against compiled Java+Kotlin
The original purpose was to create a test that parameter names are inherited on
a K-J-K hierarchy when "K-J" is compiled to bytecode, but that's not possible
right now because of KT-4509
2014-05-14 18:58:57 +04:00

9 lines
90 B
Kotlin

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