blob: fdda337c9e6304a3fb72e7ac775ac1736347d1ac [file] [log] [blame]
interface T {
fun foo(t: T) = t
}
fun foo() {
object : T {
val x = 1
}.foo(<caret>object : T {
val x = 2
})
}
/*
object : T {...}
object : T {...}.foo(...)
*/