[JS TESTS] Move dependency modules higher than main in test files

This commit is contained in:
Ivan Kylchik
2021-08-30 16:26:05 +03:00
parent 2bea77d4e2
commit aaab22a675
4 changed files with 35 additions and 35 deletions
@@ -1,5 +1,12 @@
// KJS_WITH_FULL_RUNTIME
// EXPECTED_REACHABLE_NODES: 1285
// MODULE: module1
// FILE: module1.kt
public fun f(s: String): String = "${s}: invoked from module"
public class A(val x: Int)
// MODULE: main(module1)
// FILE: main.kt
@@ -10,10 +17,3 @@ fun box(): String {
return "OK"
}
// MODULE: module1
// FILE: module1.kt
public fun f(s: String): String = "${s}: invoked from module"
public class A(val x: Int)