diff --git a/jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/B.kt.new.2 b/jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/B.kt.new.2 new file mode 100644 index 00000000000..4af1ce1941a --- /dev/null +++ b/jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/B.kt.new.2 @@ -0,0 +1,3 @@ +package foo + +open class B() : A(5) \ No newline at end of file diff --git a/jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/createADefault.kt.new.2 b/jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/createADefault.kt.new.2 new file mode 100644 index 00000000000..f413fc964cb --- /dev/null +++ b/jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/createADefault.kt.new.2 @@ -0,0 +1,5 @@ +package foo + +fun createADefault() { + A(5) +} \ No newline at end of file