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