//ww:error "division by zero" // #133/rule-7 carrier: a div-by-zero const-expr module-global init stays a // COMPILE error in BOTH stages, NOT silently zeroed (the eval_def_const error // path survives the let-hook). From test/wcc/947_inferred_scalar_global_run.c // const_divzero. package main; let s = 7 / 0; export fn main() i32 = { return s: i32; };