Files
kotlin-fork/idea/testData/quickfix/insertDelegationCall/beforeNonApplicableInsertSuper.kt
T
2015-03-27 16:09:41 +03:00

9 lines
153 B
Kotlin

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