Files
kotlin-fork/idea/testData/quickfix/insertDelegationCall/nonApplicableInsertSuper.kt
T

9 lines
153 B
Kotlin
Vendored

// "Insert 'super()' call" "true"
// ERROR: No value passed for parameter x
open class B(val x: Int)
class A : B {
constructor(x: String)<caret>
}