Move examples/*.sx and their expected/ snapshots into per-category subfolders (examples/<category>/...). Folder = leading filename token, with ffi-objc/ffi-jni kept whole; filenames are unchanged. The corpus runner and LSP sweep now discover each category's expected/ dir, while issues/ stays flat. Example 1058's repo-root-relative companion import is made file-relative. Path strings embedded in 164 snapshots were regenerated (path-only changes). Test-layout docs in CLAUDE.md updated.
72 lines
3.6 KiB
Plaintext
72 lines
3.6 KiB
Plaintext
error: cannot implicitly narrow non-integral float '1.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:40:16
|
|
|
|
|
40 | y : i64 = 1.5; // non-integral float LITERAL local → error
|
|
| ^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:41:16
|
|
|
|
|
41 | ye : i64 = M + 0.5; // non-integral int-const-EXPRESSION local → error
|
|
| ^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.75' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:42:16
|
|
|
|
|
42 | yf : i64 = F + 0.25; // non-integral float-const-LEAF local → error
|
|
| ^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '0.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:43:16
|
|
|
|
|
43 | yn : i64 = f64.true_min + 0.5; // non-integral numeric-limit float expr → error
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '1.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:44:16
|
|
|
|
|
44 | ym : i64 = 5.5 % 2.0; // non-integral float `%` remainder (1.5) → error
|
|
| ^^^^^^^^^
|
|
|
|
error: array dimension must be an integer, but '2.75' is a non-integral float
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:45:11
|
|
|
|
|
45 | ad : [F + 0.25]i64 = ---; // non-integral float-const-LEAF array DIMENSION → error
|
|
| ^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '3.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:30:16
|
|
|
|
|
30 | f : i64 = 3.5; // non-integral float LITERAL field default → error
|
|
| ^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:31:16
|
|
|
|
|
31 | fe : i64 = M + 0.5; // non-integral int-const-EXPR field default → error
|
|
| ^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.75' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:32:16
|
|
|
|
|
32 | ff : i64 = F + 0.25; // non-integral float-const-LEAF field default → error
|
|
| ^^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:35:23
|
|
|
|
|
35 | badLit :: (x : i64 = 2.5) -> i64 { return x; } // non-integral LITERAL param default → error
|
|
| ^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.5' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:36:23
|
|
|
|
|
36 | badExpr :: (x : i64 = M + 0.5) -> i64 { return x; } // non-integral int-const-EXPR param default → error
|
|
| ^^^^^^^
|
|
|
|
error: cannot implicitly narrow non-integral float '2.75' to 'i64'; use an explicit cast (`xx`/`cast`)
|
|
--> examples/diagnostics/1146-diagnostics-nonintegral-float-to-int.sx:37:23
|
|
|
|
|
37 | badFlt :: (x : i64 = F + 0.25) -> i64 { return x; } // non-integral float-const-LEAF param default → error
|
|
| ^^^^^^^^
|