From c5e98b1481c48954b6336916eca3644adb5f9372 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 10 Feb 2015 19:42:30 +0100 Subject: fix links to supertypes --- test/data/format/typeLink.html | 24 ++++++++++++++++++++++++ test/data/format/typeLink.kt | 5 +++++ 2 files changed, 29 insertions(+) create mode 100644 test/data/format/typeLink.html create mode 100644 test/data/format/typeLink.kt (limited to 'test/data') diff --git a/test/data/format/typeLink.html b/test/data/format/typeLink.html new file mode 100644 index 00000000..3f83dbda --- /dev/null +++ b/test/data/format/typeLink.html @@ -0,0 +1,24 @@ + + +test / Bar + + +test /  / Bar
+
+

Bar

+class Bar : Foo
+
+
+

Constructors

+ + + + + + + +
+<init> +public Bar()
+ + diff --git a/test/data/format/typeLink.kt b/test/data/format/typeLink.kt new file mode 100644 index 00000000..966e020e --- /dev/null +++ b/test/data/format/typeLink.kt @@ -0,0 +1,5 @@ +class Foo() { +} + +class Bar(): Foo { +} -- cgit