Files
kotlin-fork/idea/testData/intentions/convertToBlockBody/valueIsAnonymousObject3.kt
T
2015-07-28 22:39:29 +03:00

7 lines
80 B
Kotlin
Vendored

interface I1
interface I2
fun f() {
fun g() = <caret>object : I1, I2 { }
}