mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
7 lines
91 B
Kotlin
7 lines
91 B
Kotlin
class A
|
|
fun foo() {
|
|
trait Z: A {}
|
|
fun bar() {
|
|
class <caret>O2: Z {}
|
|
}
|
|
} |