mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
15 lines
173 B
Kotlin
15 lines
173 B
Kotlin
package test
|
|
|
|
public trait Super1 {
|
|
val x: String
|
|
var y: String
|
|
}
|
|
|
|
public trait Super2 {
|
|
var x: String
|
|
val y: String
|
|
}
|
|
|
|
public trait Sub: Super1, Super2 {
|
|
}
|