blob: e4887d72fb6fa47573454f91af092c1e5b138ad1 [file]
// "Convert to anonymous object" "true"
interface I {
fun bar(): Unit
}
fun foo() {
}
fun test() {
<caret>I {
foo()
}
}