agra
43d44fff75
fix(ir): narrow non-integral const-float EXPRESSIONS at typed local/field/param; align const message [F0.11]
...
Completes issue 0095 (attempt 2). The attempt-1 coerce arm only caught a direct
`const_float` literal, so a non-integral const-folded float EXPRESSION still
truncated silently at a typed local / field default / param default:
M :: 2;
local : s64 = M + 0.5; // → 2 (silent truncation — BUG; now ERRORS)
fld : s64 = M + 0.5; // field default — same
take(x : s64 = M + 0.5) // param default — same
while the typed-CONST site already errored. The integral expression
(`M + 2.0` → 4) folded but the runtime/explicit-cast paths must stay untouched.
Fix:
- New `program_index.evalConstFloatExpr` — the f64 counterpart to
`evalConstIntExpr`, delegating every integer subtree back to it (no parallel
integer logic) and adding only the float literal / unary-negate / `+ - * /`
arms. Pure (no diagnostics, no resolution side effects).
- `Lowering.foldComptimeFloatInit` applies the unified rule to a typed-binding
initializer EXPRESSION: an integral comptime float folds to its `constInt`, a
non-integral one errors, a genuine runtime float / `xx`-cast falls through to
the normal path. It runs `evalConstFloatExpr` FIRST (pure) so a `$pack[i]`
argument is never spuriously type-resolved outside an active binding, then
gates on `isFloat(inferExprType)` so a plain comptime int is left alone.
Wired into the typed-local path, the three struct field-default sites (via a
shared `lowerCoercedDefault`), and the call-argument loop (covers expanded
param defaults).
- One `Lowering.diagNonIntegralNarrow` now emits the narrowing wording at all
five sites (coerce arm, global init, const-expr value, the typed-binding
sites, and the typed-const path). The typed-CONST non-integral diagnostic
therefore reads "cannot implicitly narrow non-integral float …" instead of
the stale "initializer is a float literal / floating-point expression".
Tests: examples/1146 (negative) extended with non-integral const-EXPRESSION
cases at local/field/param; examples/0168 (positive) extended with integral
const-EXPRESSION folds and `xx (M + 0.5)` truncation; examples/1143 reconciled
to the aligned const message (G/BAD/BAD2 stay errors); unit test
`evalConstFloatExpr folds comptime float expressions`. Full gate green (447).
2026-06-05 16:28:12 +03:00
..
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-03 19:32:49 +03:00
2026-06-03 20:09:46 +03:00
2026-06-05 16:28:12 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 22:28:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:31:18 +03:00
2026-06-02 09:35:41 +03:00
2026-06-02 19:20:14 +03:00
2026-06-04 02:00:13 +03:00
2026-06-05 09:05:37 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-03 19:00:39 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 16:59:20 +03:00
2026-06-02 17:20:31 +03:00
2026-06-02 17:45:37 +03:00
2026-06-03 19:00:39 +03:00
2026-06-04 03:44:19 +03:00
2026-06-04 04:04:40 +03:00
2026-06-04 04:22:43 +03:00
2026-06-04 04:52:42 +03:00
2026-06-04 09:06:08 +03:00
2026-06-04 08:22:45 +03:00
2026-06-04 09:06:08 +03:00
2026-06-04 09:39:18 +03:00
2026-06-04 10:38:21 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 15:32:48 +03:00
2026-06-04 16:14:06 +03:00
2026-06-04 16:14:06 +03:00
2026-06-04 17:04:41 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 19:16:37 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 21:14:35 +03:00
2026-06-04 21:14:35 +03:00
2026-06-04 22:17:53 +03:00
2026-06-05 00:35:52 +03:00
2026-06-04 23:30:41 +03:00
2026-06-05 00:21:32 +03:00
2026-06-05 15:34:33 +03:00
2026-06-05 08:23:59 +03:00
2026-06-05 12:09:52 +03:00
2026-06-05 13:24:15 +03:00
2026-06-05 14:00:24 +03:00
2026-06-05 14:40:06 +03:00
2026-06-05 16:28:12 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 13:16:39 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:28:35 +03:00
2026-06-01 20:35:25 +03:00
2026-06-02 23:29:49 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 15:17:33 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 00:08:46 +03:00
2026-06-04 00:08:46 +03:00
2026-06-04 00:08:46 +03:00
2026-06-04 01:08:14 +03:00
2026-06-04 02:32:32 +03:00
2026-06-04 02:57:32 +03:00
2026-06-04 03:21:41 +03:00
2026-06-04 07:54:20 +03:00
2026-06-05 01:01:25 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:34:21 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-03 19:00:39 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 23:14:24 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 22:47:58 +03:00
2026-06-01 20:04:17 +03:00
2026-06-01 20:04:17 +03:00
2026-06-01 20:35:25 +03:00
2026-06-01 20:56:10 +03:00
2026-06-01 22:01:38 +03:00
2026-06-01 22:01:38 +03:00
2026-06-01 22:18:47 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 22:44:20 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 23:14:24 +03:00
2026-06-01 23:24:15 +03:00
2026-06-01 23:24:15 +03:00
2026-06-01 23:29:07 +03:00
2026-06-03 06:42:51 +03:00
2026-06-03 06:31:18 +03:00
2026-06-03 06:42:51 +03:00
2026-06-04 18:31:08 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 10:24:30 +03:00
2026-06-02 10:24:30 +03:00
2026-06-02 10:41:29 +03:00
2026-06-02 10:57:17 +03:00
2026-06-02 10:57:17 +03:00
2026-06-02 15:51:04 +03:00
2026-06-02 16:33:38 +03:00
2026-06-02 17:57:17 +03:00
2026-06-03 19:00:39 +03:00
2026-06-03 19:32:49 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 20:09:46 +03:00
2026-06-03 22:06:56 +03:00
2026-06-04 04:22:43 +03:00
2026-06-04 04:52:42 +03:00
2026-06-04 05:25:19 +03:00
2026-06-04 10:38:21 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 12:31:24 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 14:09:46 +03:00
2026-06-04 14:38:18 +03:00
2026-06-04 15:17:33 +03:00
2026-06-04 19:16:37 +03:00
2026-06-04 20:27:53 +03:00
2026-06-04 21:14:35 +03:00
2026-06-05 08:23:59 +03:00
2026-06-05 11:22:59 +03:00
2026-06-05 14:00:24 +03:00
2026-06-05 16:28:12 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:34:21 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 18:31:08 +03:00
2026-06-04 18:31:08 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 11:32:25 +03:00
2026-06-04 12:13:45 +03:00
2026-06-04 13:16:39 +03:00
2026-06-04 15:32:48 +03:00
2026-06-05 01:32:35 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-02 09:23:50 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00
2026-06-01 19:05:15 +03:00