Files
kotlin-fork/compiler/testData/codegen/box/sameFileInSourceAndDependencies/functionDeclaration.kt
T
Igor Chevdar a1e5bef3ad [box-tests] Ignored some tests for K/N
A file included twice in a source set is not supported for now
2021-06-16 14:27:14 +05:00

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()