43b4df74bc
This reverts commit 97ce502cbe.
9 lines
194 B
Kotlin
Vendored
9 lines
194 B
Kotlin
Vendored
// Constructors
|
|
|
|
class Constructors(val valInPrimary: Int) {
|
|
constructor(parameterInSecondary: String): this(4)
|
|
private constructor(): this(2)
|
|
}
|
|
|
|
// LAZINESS:NoLaziness
|
|
// FIR_COMPARISON |