63a0b5bfde
Part of #KT-22211 Part of #KT-39353
10 lines
154 B
Kotlin
Vendored
10 lines
154 B
Kotlin
Vendored
class Test {
|
|
fun foo(f: (String) -> String): Test = this
|
|
}
|
|
|
|
fun test() {
|
|
val abc = Test()
|
|
.foo { "Str" }
|
|
.foo {<caret>}
|
|
}
|