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