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