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