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

11 lines
202 B
Kotlin
Vendored

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