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

10 lines
192 B
Kotlin

// "Insert 'super()' call" "false"
// ACTION: Insert 'this()' call
// ERROR: Primary constructor call expected
open class B()
class A(val x: Int) : B() {
constructor(x: String)<caret>
}