diff --git a/idea/testData/refactoring/introduceVariable/ConstructorDelegationCall.kt b/idea/testData/refactoring/introduceVariable/ConstructorDelegationCall.kt index b2dc183f4da..3ebb2c4b333 100644 --- a/idea/testData/refactoring/introduceVariable/ConstructorDelegationCall.kt +++ b/idea/testData/refactoring/introduceVariable/ConstructorDelegationCall.kt @@ -1,5 +1,5 @@ open class A(n: Int) -class B { - constructor(x: Int) : A(x + 1) +class B : A { + constructor(x: Int) : super(x + 1) } \ No newline at end of file