39234b4d3e
Otherwise they are invisible to Java code
11 lines
150 B
Kotlin
11 lines
150 B
Kotlin
trait Trait {
|
|
fun foo()
|
|
val bar: Int
|
|
}
|
|
|
|
class Impl: Trait {
|
|
override fun foo() {}
|
|
override val bar = 1
|
|
}
|
|
|
|
class Test : Trait by Impl() |