Files
kotlin-fork/compiler/testData/ir/klibLayout/multiFiles.kt
T
Roman Artemev 1a64e2da91 [KLIB] Add klib layout tests
- currently only file paths are checked
2021-12-15 21:13:53 +03:00

15 lines
153 B
Kotlin
Vendored

// FILE: a.kt
fun foo() = 42
// FILE: b/c.kt
fun bar() = foo()
class C
// FILE: c/d/e.kt
fun qux(c: C) = c.toString()
fun baz() = qux(C()) + bar()