Files
kotlin-fork/compiler/testData/diagnostics/tests/objects/upperBoundViolated.kt
T
2015-05-12 19:43:17 +02:00

10 lines
185 B
Kotlin
Vendored

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