Files
kotlin-fork/compiler/testData/ir/irText/expressions/interfaceThisRef.sig.kt.txt
T
2023-07-14 20:26:45 +00:00

20 lines
449 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
}