summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/other/defaultValueInConstructorAdded/A.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/other/defaultValueInConstructorAdded/A.kt')
-rw-r--r--plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/other/defaultValueInConstructorAdded/A.kt8
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/other/defaultValueInConstructorAdded/A.kt b/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/other/defaultValueInConstructorAdded/A.kt
deleted file mode 100644
index 1aa0cb739a34..000000000000
--- a/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/withJava/other/defaultValueInConstructorAdded/A.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package foo
-
-open class A(x: Int)
-
-// The use of annotation here is intentional, so no change for "fun A" is detected,
-// but after adding default value to A constructor, we want to force resolve to the constructor
-@Deprecated("Warning", level = DeprecationLevel.WARNING)
-fun A() = A(30) \ No newline at end of file