dd824aacb6
This reverts commit 43b4df74bc.
8 lines
143 B
Kotlin
Vendored
8 lines
143 B
Kotlin
Vendored
// OnlySecondaryConstructors
|
|
|
|
class OnlySecondaryConstructors {
|
|
constructor(): super()
|
|
constructor(p: Int): this()
|
|
}
|
|
|
|
// FIR_COMPARISON |