From 52be775f286652dd28d4964cc0d7f4d7bde4e4bc Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Fri, 11 Mar 2016 02:39:55 +0300 Subject: [PATCH] Minor: add two accidentally deleted files to test case --- .../pureKotlin/defaultValueInConstructorRemoved/B.kt.new.2 | 3 +++ .../defaultValueInConstructorRemoved/createADefault.kt.new.2 | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/B.kt.new.2 create mode 100644 jps-plugin/testData/incremental/pureKotlin/defaultValueInConstructorRemoved/createADefault.kt.new.2 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