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

10 lines
140 B
Kotlin

// "Insert 'this()' call" "true"
open class B(val x: Int)
class A : B {
constructor(x: String)<caret>
constructor() : super(1)
}