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

9 lines
155 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>
}