test: prove ordinary import binding modes

This commit is contained in:
2026-08-14 10:56:54 +09:00
parent 792b6ecbe5
commit 10e02a00ee
20 changed files with 1284 additions and 672 deletions

View File

@@ -5,6 +5,6 @@ export fn assert(b: bool, msg: str) void = { };
package main;
import m;
export fn main() i32 = {
assert(false, "routed to m.assert");
m.assert(false, "routed to m.assert");
return 42;
};