mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
10 lines
185 B
Kotlin
Vendored
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<!>>
|
|
}
|