From af27102b662439b4f7ccdeaf2195c93ba533c7be Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 30 Jun 2016 17:09:58 +0200 Subject: Generate correct signature for methods with parameters of Java primitive types. Resolves #76 --- core/testdata/javadoc/paramlink.kt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 core/testdata/javadoc/paramlink.kt (limited to 'core/testdata/javadoc') 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) +} -- cgit