Break the monolithic examples/50-smoke.sx into 30 focused per-section examples,
filed into their category blocks (basic/types/comptime/memory/protocols/ffi),
each carrying only the top-level decls its section references (the protocols
section keeps the full preamble — its deps flow through UFCS method calls that
name-based extraction can't see). Outputs verified identical to the original
section blocks.
Add examples/1036-errors-failable-smoke.sx — an end-to-end error-handling example
(the E5.4 work): named + inferred error sets consumed via destructure, try (in
helpers), catch (bare-expr / match-body / diverging / no-binding), or
value-terminator, onfail+defer interleave, and error.X value + {} tag
interpolation.
Remove examples/50-smoke.sx. Suite: 324 passed, 0 failed.
22 lines
354 B
Plaintext
22 lines
354 B
Plaintext
=== Init Blocks ===
|
|
IB1: 60 3
|
|
IB2: 142 2
|
|
IB3: 5 1
|
|
IB4: 100
|
|
IB5: 52
|
|
--- struct static method shorthand ---
|
|
SM1: 16.000000 8.000000
|
|
SM1: 5.000000 5.000000
|
|
SM2: 10 20
|
|
--- optional if-else coercion ---
|
|
opt-if1: 99.000000
|
|
opt-if2: 10.000000
|
|
opt-if3: 10.000000
|
|
opt-if4: 0.000000
|
|
opt-if5: 42.000000
|
|
usize: 42
|
|
isize: -7
|
|
usize+8: 50
|
|
s32->usize: 10
|
|
usize->s64: 42
|