7 lines
74 B
Kotlin
Vendored
7 lines
74 B
Kotlin
Vendored
interface A
|
|
class AImpl : A
|
|
|
|
class B : A by AImpl() {
|
|
constructor()
|
|
}
|