From dc83d5cf04108272eef77c3907ecaba08c37e5bd Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Wed, 14 Oct 2015 13:43:50 +0300 Subject: [PATCH] Fixed test data --- .../introduceVariable/ConstructorDelegationCall.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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