Files
kotlin-fork/idea/testData/intentions/removeEmptyClassBody/anonymousInterfaceObject.kt
T

7 lines
93 B
Kotlin
Vendored

// IS_APPLICABLE: false
interface Foo
fun test() {
val value = object : Foo {}<caret>
}