7c61ddc72b
#KT-44865 Fixed
8 lines
221 B
Kotlin
Vendored
8 lines
221 B
Kotlin
Vendored
sealed class Sealed protected constructor(val x: Int) {
|
|
object FIRST : Sealed()
|
|
|
|
<!NON_PRIVATE_OR_PROTECTED_CONSTRUCTOR_IN_SEALED!>public<!> constructor(): this(42)
|
|
|
|
constructor(y: Int, z: Int): this(y + z)
|
|
}
|