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

10 lines
149 B
Kotlin

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