Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/tooManyArguments.kt
T
2020-04-16 17:04:09 +02:00

7 lines
148 B
Kotlin
Vendored

// "Create secondary constructor" "true"
class CtorPrimary(val f1: Int, val f2: Int?)
fun construct() {
val v6 = CtorPrimary(1, 2, 3<caret>)
}