mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
15 lines
185 B
Kotlin
Vendored
15 lines
185 B
Kotlin
Vendored
package test
|
|
|
|
public interface Super1 {
|
|
val x: String
|
|
var y: String
|
|
}
|
|
|
|
public interface Super2 {
|
|
var x: String
|
|
val y: String
|
|
}
|
|
|
|
public interface Sub: Super1, Super2 {
|
|
}
|