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

@@ -10,4 +10,4 @@ export type gerr1 = !void;
export fn other() (i32 | gerr1) = { return 0; };
package main;
import beta;
fn main() int = { match (beta.user()) { case let n: i32 => return n: int; case berr => return 99; }; };
fn main() int = { match (beta.user()) { case let n: i32 => return n: int; case beta.berr => return 99; }; };