Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/class.kt.txt
T
2024-02-16 10:19:38 +00:00

34 lines
439 B
Kotlin
Vendored

class Test<T0 : Any?> {
inner class TestInner<T2 : Any?> {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
class TestNested<T1 : Any?> {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
interface TestInterface<T : Any?> {
interface TestNestedInterface<TT : Any?> {
}
}