aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/javadoc/paramlink.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/javadoc/paramlink.kt')
-rw-r--r--core/testdata/javadoc/paramlink.kt10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/testdata/javadoc/paramlink.kt b/core/testdata/javadoc/paramlink.kt
deleted file mode 100644
index 48972a22..00000000
--- a/core/testdata/javadoc/paramlink.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package demo
-
-/**
- * You can [eat] it or cut it into slices using [cutIntoPieces]
- */
-interface Apple {
- fun eat()
-
- fun cutIntoPieces(pieces: Int)
-}