A `v, err := failable()` destructure now binds the value slot(s) "live
only where `err` is proven absent". Reading `v` where the compiler cannot
prove `err == null` is a compile error.
New diagnostic-only Pass 1e (`checkErrorFlow` in ir/lower.zig): a
structured, path-sensitive walk over each main-file function body. A
proven-null set is threaded across branches and joined by intersection
at each `if`'s merge. Proof shapes recognized:
- `if !err { … v … }` (proven inside the guard)
- `if err { return/raise } … v` (proven on the fall-through)
- `if err { … } else { … v … }` (proven in the else branch)
- `!err and <reads v>` (short-circuit refinement)
Error-set tag compares (`if err == error.X`) prove nothing about
absence — they narrow the tag only. Nested lambdas are analyzed as their
own boundaries. Library modules are trusted (skipped).
Migrated the canon value-failable examples (1011/1012/1018/1044) to read
their value slots under `if !err` guards — output unchanged. New
regressions: 1046 (every proof shape compiles + runs, exit 210) and 1047
(unproven reads rejected, exit 1).
Gates: zig build, zig build test, run_examples.sh -> 338 passed, 0 failed.
30 lines
1.4 KiB
Plaintext
30 lines
1.4 KiB
Plaintext
// Generic function with a value-carrying `!` return composes (ERR E5.1
|
|
// sub-feature 8). A `$T: Type` generic whose return is `(T, !E)` monomorphizes
|
|
// per call: `return try f()` propagates the closure's error, and each
|
|
// monomorphization's success value flows through as the concrete `T`.
|
|
// (Regression: confirms issue 0062 was an invalid-syntax repro — the bug only
|
|
// appeared with the non-generic `T: Type` form; the `$T` form works.)
|
|
|
|
#import "modules/std.sx";
|
|
|
|
E :: error { Bad }
|
|
|
|
wrap :: ($T: Type, f: Closure() -> (T, !E)) -> (T, !E) { return try f(); }
|
|
|
|
main :: () -> s32 {
|
|
// success, consumed by catch
|
|
print("catch={}\n", wrap(s32, closure(() -> (s32, !E) { return 7; })) catch e -1); // 7
|
|
|
|
// success, consumed by destructure (binds value + error slot); the value
|
|
// slot is read only under an `if !err` guard (ERR E1.8 path-sensitivity)
|
|
r, err := wrap(s32, closure(() -> (s32, !E) { return 9; }));
|
|
if !err { print("destr={} ok=true\n", r); } // destr=9 ok=true
|
|
|
|
// failure path: the raised tag propagates through the generic `try`
|
|
print("fail={}\n", wrap(s32, closure(() -> (s32, !E) { raise error.Bad; }) ) catch e -1); // -1
|
|
|
|
// a second monomorphization at a different T
|
|
print("u8={}\n", wrap(u8, closure(() -> (u8, !E) { return 200; })) catch e 0); // 200
|
|
return 0;
|
|
}
|