7 lines
60 B
Kotlin
Vendored
7 lines
60 B
Kotlin
Vendored
interface A
|
|
interface B
|
|
|
|
class C<T> where T : A, T : B {
|
|
|
|
}
|