mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
168 B
Kotlin
Vendored
13 lines
168 B
Kotlin
Vendored
package test
|
|
|
|
interface Trait {
|
|
fun foo()
|
|
val bar: Int
|
|
}
|
|
|
|
class Impl: Trait {
|
|
override fun foo() {}
|
|
override val bar = 1
|
|
}
|
|
|
|
class Test : Trait by Impl() |