Files
kotlin-fork/compiler/testData/diagnostics/tests/objects/upperBoundViolated.fir.kt
T

10 lines
131 B
Kotlin
Vendored

interface Trait<N : Number>
object O1 : Trait<Int>
object O2 : Trait<String>
class C {
companion object : Trait<IntRange>
}