a1e5bef3ad
A file included twice in a source set is not supported for now
19 lines
232 B
Kotlin
Vendored
19 lines
232 B
Kotlin
Vendored
// IGNORE_BACKEND: NATIVE
|
|
// MODULE: lib
|
|
// FILE: 2.kt
|
|
fun a() = "OK"
|
|
fun b() = a()
|
|
|
|
// FILE: 3.kt
|
|
fun c() = b()
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: 1.kt
|
|
fun d() = c()
|
|
|
|
fun box(): String = d()
|
|
|
|
// FILE: 2.kt
|
|
fun a() = "OK"
|
|
fun b() = a()
|