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