4f136cde31
Completion in the IDE relies on correct scopes for KDoc positions. So we add testData for `KtScopeProvider` and `ContextCollector` to ensure that there are no regressions
13 lines
189 B
Kotlin
Vendored
13 lines
189 B
Kotlin
Vendored
package test
|
|
|
|
class Param1
|
|
|
|
class Param2
|
|
|
|
/**
|
|
* [<expr>param1</expr>]
|
|
*/
|
|
class MyClass<TypeParam>(param1: Param1, param2: Param2) {
|
|
val property: Int = 10
|
|
fun member(): Int = 10
|
|
} |