mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
13 lines
164 B
Kotlin
13 lines
164 B
Kotlin
package test
|
|
|
|
trait Trait {
|
|
fun foo()
|
|
val bar: Int
|
|
}
|
|
|
|
class Impl: Trait {
|
|
override fun foo() {}
|
|
override val bar = 1
|
|
}
|
|
|
|
class Test : Trait by Impl() |