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

8 lines
100 B
Kotlin

// "Insert 'this()' call" "true"
class A() {
constructor(x: String)<caret> : this() {
}
}