mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
14 lines
152 B
Kotlin
Vendored
14 lines
152 B
Kotlin
Vendored
// p.B
|
|
package p
|
|
|
|
interface A {
|
|
fun a() = "a"
|
|
}
|
|
|
|
interface B: A {
|
|
fun b() = "b"
|
|
}
|
|
|
|
// TODO: could be lazy
|
|
// see KT-22819
|
|
// LAZINESS:NoLaziness |