Files
kotlin-fork/idea/testData/quickfix/insertDelegationCall/primaryRequiredNoSuper.kt
T
Valentin Kipyatkov 7625672914 Better test data
2016-09-23 10:07:15 +03:00

10 lines
240 B
Kotlin
Vendored

// "class org.jetbrains.kotlin.idea.quickfix.InsertDelegationCallQuickfix" "false"
// ACTION: Insert 'this()' call
// ERROR: Primary constructor call expected
open class B()
class A(val x: Int) : B() {
constructor(x: String)<caret>
}