blob: 6b714b3c1164dd8c6352072ae253a3388a1bdc5c [file] [log] [blame]
// "Insert 'super()' call" "true"
// ERROR: No value passed for parameter 'x'
open class B(val x: Int)
class A : B {
constructor(x: String)<caret>
}