summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.1
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.1')
-rw-r--r--plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.113
1 files changed, 0 insertions, 13 deletions
diff --git a/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.1 b/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.1
deleted file mode 100644
index fcf08146bf55..000000000000
--- a/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/pureKotlin/delegatedPropertyInlineMethodAccessor/inline.kt.new.1
+++ /dev/null
@@ -1,13 +0,0 @@
-package inline
-
-import kotlin.reflect.KProperty
-
-class Inline {
- inline operator fun getValue(receiver: Any?, prop: KProperty<*>): Int {
- return 1
- }
-
- inline operator fun setValue(receiver: Any?, prop: KProperty<*>, value: Int) {
- println(value)
- }
-}