blob: 324ff463c8e012a20d3d1f47e9d416eb6d4648cd [file] [log] [blame]
class Test {
fun foo(f: (String) -> String): Test = this
}
fun test() {
val abc = Test()
.foo { "Str" }
.foo {<caret>}
}