Files
kotlin-fork/idea/testData/formatter/WhereClause.kt
T
Dmitry Jemerov c2efdfe243 Add space before 'where' keyword
#KT-19213 Fixed
2017-10-11 12:25:53 +02:00

17 lines
413 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 {
}
interface Bound1
interface Bound2
class WhereClass1<T>where T : Bound1, T : Bound2