Files
kotlin-fork/idea/testData/intentions/convertClassToSealedClass/onlySecondaryConstructor.kt
T
Toshiaki Kameyama a8da79a130 KT-12504 Intention to make open class with only private constructors sealed (#1193)
* Intention to make open class with only private constructors sealed #KT-12504 Fixed

* Fixed #KT-12504
2017-07-19 13:36:36 +02:00

5 lines
67 B
Kotlin
Vendored

open class Test<caret> {
private constructor(i: Int) {
}
}