Files
kotlin-fork/compiler/testData/ir/irText/firProblems/FakeOverrideInAnonymousWithDelegation.kt
T
2023-03-23 13:12:17 +00:00

10 lines
163 B
Kotlin
Vendored

class Wrapper {
private val dummy = object : Bar {}
private val bar = object : Bar by dummy {}
}
interface Bar {
val foo: String
get() = ""
}