//ww:run-exit 7 package main; let g: i32 = 0; fn assert(b: bool) void = { g = 7; }; export fn main() i32 = { assert(false); return g; };