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

10 lines
181 B
Kotlin

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