aboutsummaryrefslogtreecommitdiff
path: root/test/data/format/extensions.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/format/extensions.kt')
-rw-r--r--test/data/format/extensions.kt19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/data/format/extensions.kt b/test/data/format/extensions.kt
deleted file mode 100644
index 6f2eff9d..00000000
--- a/test/data/format/extensions.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package foo
-
-/**
- * Function with receiver
- */
-fun String.fn() {
-}
-
-/**
- * Function with receiver
- */
-fun String.fn(x: Int) {
-}
-
-/**
- * Property with receiver.
- */
-val String.foobar: Int
- get() = size() * 2