Files
kotlin-fork/idea/testData/quickfix/insertDelegationCall/nonApplicableInsertSuper.kt.after
T
2017-05-20 23:44:20 +03:00

9 lines
165 B
Plaintext
Vendored

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