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