From ce4b3b663f1f0bb40f87f288e210e01ffe93e52a Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 20 Feb 2015 19:19:12 +0100 Subject: test that we're linking type names in parameters and return values --- test/data/format/javaSupertype.html | 13 ++++++++++++- test/data/format/javaSupertype.java | 1 + 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/test/data/format/javaSupertype.html b/test/data/format/javaSupertype.html index bf56936c..f49a6e0f 100644 --- a/test/data/format/javaSupertype.html +++ b/test/data/format/javaSupertype.html @@ -3,11 +3,22 @@ test / test.C.Bar -test / test / C / Bar
+test / test / C / Bar

Bar

public open class Bar : Foo


+

Functions

+ + + + + + + +
+returnFoo +public open fun returnFoo(foo: Foo): Foo
diff --git a/test/data/format/javaSupertype.java b/test/data/format/javaSupertype.java index 96caeb1d..295c319f 100644 --- a/test/data/format/javaSupertype.java +++ b/test/data/format/javaSupertype.java @@ -5,5 +5,6 @@ class C { } public static class Bar extends Foo { + public Foo returnFoo(Foo foo) { return foo; } } } -- cgit