10 lines
159 B
Kotlin
Vendored
10 lines
159 B
Kotlin
Vendored
fun test() {
|
|
class Test {
|
|
operator fun plus(fn: () -> Test): Test = fn()
|
|
}
|
|
val test = Test()
|
|
test.pl<caret>us {
|
|
Test()
|
|
}
|
|
}
|