aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/extensionScope.kt
blob: 9f3130b85bd442dfbb67183e24265d457bd94d52 (plain)
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() {}