mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 00:21:28 +00:00
12 lines
196 B
Kotlin
Vendored
12 lines
196 B
Kotlin
Vendored
package test
|
|
|
|
class Generic1<T>
|
|
class Generic1WithBounds<T: Bound1>
|
|
|
|
class Generic2<A, B>
|
|
class Generic2WithBounds<A, B> where A: Bound1, A: Bound2, B: Generic1<A>
|
|
|
|
class Bound1
|
|
interface Bound2
|
|
|