Files
kotlin-fork/idea/testData/quickfix/removeUnused/secondaryLocalClassConstructor.kt
T
2019-03-28 10:52:23 +07:00

8 lines
180 B
Kotlin
Vendored

// "Safe delete constructor" "true"
fun main() {
class LocalClass(val number: Int) {
<caret>constructor(s: String) : this(s.toInt())
}
val l = LocalClass(42)
}