Files
kotlin-fork/idea/testData/quickfix/removeUnused/unusedConstructor.kt
T

4 lines
98 B
Kotlin
Vendored

// "Safe delete constructor" "true"
class Owner(val x: Int) {
<caret>constructor(): this(42)
}