mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
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
9 lines
90 B
Kotlin
9 lines
90 B
Kotlin
package test
|
|
|
|
trait B {
|
|
fun foo(kotlinName: Int)
|
|
}
|
|
|
|
class ZAB : A, B
|
|
class ZBA : B, A
|