Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/constructorInObject.fir.kt
T

20 lines
264 B
Kotlin
Vendored

object A {
constructor()
init {}
}
enum class B {
X() {
<!UNRESOLVED_REFERENCE!>constructor()<!>
}
}
class C {
companion object {
constructor()
}
}
val anonObject = object {
<!CONSTRUCTOR_IN_OBJECT!>constructor()<!>
}