test: remove package-wide import assumptions

This commit is contained in:
2026-08-14 03:45:02 +09:00
parent a841278333
commit 04d9560d51
74 changed files with 121 additions and 154 deletions

View File

@@ -1,7 +1,6 @@
//ww:run-exit 25
// Migrated from 700_e2e row 34.
package main;
import rt;
type point = struct { x: i32, y: i32 };
fn main() i32 = {
let p: *point = alloc(point { x = 3, y = 4 })!;