Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/class.kt.txt
T
2020-11-26 00:14:25 +03:00

35 lines
440 B
Plaintext
Vendored

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