7555bb6c3c
#KT-14083 Fixed
13 lines
329 B
Kotlin
Vendored
13 lines
329 B
Kotlin
Vendored
abstract class RustNavigationContributorBase<T> protected constructor(
|
|
private val indexKey: StubIndexKey<String, T>,
|
|
private val clazz: Class<T>
|
|
) : ChooseByNameContributor, GotoClassContributor
|
|
where T : NavigationItem,
|
|
T : RustNamedElement {
|
|
}
|
|
|
|
fun <T> foo()
|
|
where T : NavigationItem,
|
|
T : RustNamedElement {
|
|
}
|