7 lines
93 B
Kotlin
7 lines
93 B
Kotlin
trait T {
|
|
fun test() {}
|
|
}
|
|
|
|
fun foo() {
|
|
<selection>(object: T {}).test()</selection>
|
|
} |