Files
kotlin-fork/compiler/testData/diagnostics/tests/subtyping/memberAnonymousObjects.fir.kt
T

6 lines
115 B
Kotlin
Vendored

class Test {
private var x = object {};
init {
x = <!ASSIGNMENT_TYPE_MISMATCH!>object<!> {}
}
}