pub fn main() void { var a: anyerror!u32 = error.B; var b: anyerror!u32 = 1; _ = @errorToInt(a); _ = @errorToInt(b); }