a8da79a130
* Intention to make open class with only private constructors sealed #KT-12504 Fixed * Fixed #KT-12504
4 lines
64 B
Plaintext
Vendored
4 lines
64 B
Plaintext
Vendored
sealed class Test() {
|
|
constructor(i: Int) : this() {
|
|
}
|
|
} |