111b2945e1
#KT-37908 Fixed
12 lines
155 B
Kotlin
Vendored
12 lines
155 B
Kotlin
Vendored
// "Convert to anonymous object" "true"
|
|
interface I {
|
|
fun a()
|
|
val b: Int
|
|
get() = 1
|
|
}
|
|
|
|
fun foo(i: I) {}
|
|
|
|
fun test() {
|
|
foo(<caret>I {})
|
|
} |