Files
kotlin-fork/idea/testData/refactoring/introduceVariable/ConstructorDelegationCall.kt
T
2015-09-03 22:06:15 +03:00

5 lines
91 B
Kotlin
Vendored

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