From 529eb51af362c8e4e16ae1598fd3c2492f8b2083 Mon Sep 17 00:00:00 2001 From: Hojun-Cho Date: Tue, 26 May 2026 01:07:25 +0900 Subject: [PATCH] selfhost: resync smoke.combined.ww to current lib/types (#110) #28 regen'd the 5 cmd combined.ww but missed smoke, which pulls lib/types transitively. Baseline for the freshness gate below. --- selfhost/test/smoke.combined.ww | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/selfhost/test/smoke.combined.ww b/selfhost/test/smoke.combined.ww index 9780deda..2054f01b 100644 --- a/selfhost/test/smoke.combined.ww +++ b/selfhost/test/smoke.combined.ww @@ -748,6 +748,13 @@ def U16_MAX: u16 = 65535; def U32_MAX: u32 = 4294967295; def U64_MAX: u64 = 18446744073709551615; +def U8_MIN: u8 = 0; +def U16_MIN: u16 = 0; +def U32_MIN: u32 = 0; +def U64_MIN: u64 = 0; + +def RUNE_MIN: rune = '\0'; + // bytes — slice operations over []u8. Mirrors Hare's bytes module // (ref/hare/bytes/) for the in-tree subset: search/equality/prefix // helpers used by lib/encoding, lib/bufio, lib/memio.