111b2945e1
#KT-37908 Fixed
11 lines
137 B
Kotlin
Vendored
11 lines
137 B
Kotlin
Vendored
// "Convert to anonymous object" "true"
|
|
interface I {
|
|
fun a()
|
|
fun b() {}
|
|
}
|
|
|
|
fun foo(i: I) {}
|
|
|
|
fun test() {
|
|
foo(<caret>I {})
|
|
} |