13 lines
117 B
Kotlin
13 lines
117 B
Kotlin
fun foo() {
|
|
public trait T: A
|
|
|
|
public object O1: A()
|
|
|
|
fun bar() {
|
|
public object O2: T
|
|
}
|
|
}
|
|
|
|
|
|
|