1 2 3 4 5 6 7 8 9 10 11 12 13 14
/** * Test class with Type-parameter */ class Foo<T> /** * Some extension on Foo */ fun <T> Foo<T>.ext() {} /** * Correct link: [Foo.ext] */ fun test() {}