10 lines
240 B
Kotlin
Vendored
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>
|
|
}
|