Files
kotlin-fork/idea/testData/quickfix/addGenericUpperBound/withinDeclaration.kt
T

5 lines
99 B
Kotlin
Vendored

// "Add 'kotlin.Any' as upper bound for E" "true"
class A<T : Any>
fun <E> bar(x: A<E<caret>>) {}