Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/functionAndProperty/objectExpressionInConstructor.fir.kt
T

6 lines
83 B
Kotlin
Vendored

class Outer {
val x = object {
val x = 1
fun getX() = 1
}
}