Tests: add FILE directives to some multimodule tests

To help them run on the old infrastructure, which light analysis tests
are still using.
This commit is contained in:
Alexander Udalov
2023-05-31 00:09:21 +02:00
committed by Space Team
parent 29b6595cfc
commit be4df35867
8 changed files with 49 additions and 28 deletions
+2 -1
View File
@@ -4,6 +4,7 @@
// CHECK_BYTECODE_LISTING
// MODULE: dependency
// FILE: dependency.kt
package dependency
@@ -16,8 +17,8 @@ inline fun inlined() = dependency.DPoint(1.0, 2.0)
fun id(x: dependency.DPoint) = x
inline fun idInlined(x: dependency.DPoint) = x
// MODULE: main(dependency)
// FILE: main.kt
package main