Files
kotlin-fork/compiler/testData/ir/irText/expressions/interfaceThisRef.sig.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

19 lines
448 B
Kotlin
Vendored

// CHECK:
// Mangled name: IFoo
// Public signature: /IFoo|null[0]
interface IFoo {
// CHECK:
// Mangled name: IFoo#bar(){}
// Public signature: /IFoo.bar|496682602797471549[0]
// Public signature debug description: bar(){}
fun bar(): Unit
// CHECK:
// Mangled name: IFoo#foo(){}
// Public signature: /IFoo.foo|-1041209573719867811[0]
// Public signature debug description: foo(){}
abstract fun foo(): Unit
}