test: keep same-module imports live

This commit is contained in:
2026-08-14 03:54:30 +09:00
parent 04d9560d51
commit 9b015e764c

View File

@@ -18,5 +18,7 @@ package main;
import mod1;
import mod2;
fn main() i32 = {
let _ = mod1.caller();
let _ = mod2.caller();
return 0i32;
};