Files
kotlin-fork/native/objcexport-header-generator/testData/headers/classWithGenerics/Foo.kt
T
2024-02-08 12:43:48 +00:00

6 lines
103 B
Kotlin
Vendored

open class A<T1, T2>
interface I1<T>
interface I2<T>
class Foo<T> : I1<T>, I2<String>, A<T, String>()