Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/class.kt.txt
T
Dmitriy Dolovov 16d1e85932 IR text tests: Stable blank lines between declarations in class
Rework rendering of kt-like dump and signatures dump in order to avoid
unstable blank line between declarations of the same level:
1. No blank line for the first declaration inside the member scope of
the class.
2. Always a single blank line between each two subsequent declarations
inside the member scope of the class.
2023-11-30 08:32:35 +00:00

33 lines
438 B
Kotlin
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>() */
}
}
}