Files
kotlin-fork/idea/testData/refactoring/introduceVariable/ConstructorDelegationCall.kt
T
Valentin Kipyatkov dc83d5cf04 Fixed test data
2015-10-15 19:20:12 +03:00

5 lines
99 B
Kotlin
Vendored

open class A(n: Int)
class B : A {
constructor(x: Int) : <selection>super</selection>(x + 1)
}