8 lines
143 B
Kotlin
Vendored
8 lines
143 B
Kotlin
Vendored
// OnlySecondaryConstructors
|
|
|
|
class OnlySecondaryConstructors {
|
|
constructor(): super()
|
|
constructor(p: Int): this()
|
|
}
|
|
|
|
// FIR_COMPARISON |