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

@@ -11,4 +11,4 @@ export type gerr2 = !u8;
export fn op() (i32 | gerr1 | gerr2) = { 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; }; };