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