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.
25 lines
1018 B
Plaintext
25 lines
1018 B
Plaintext
// An array dimension that is not a compile-time integer constant is a hard
|
|
// error, not a silently-fabricated 0-length array. Here a type alias's
|
|
// dimension is a runtime function call (`get()`), which is genuinely not
|
|
// compile-time-known — the registration-time resolver cannot evaluate it.
|
|
//
|
|
// (A const-FOLDABLE expression dimension such as `[M + 1]` is NOT an error — it
|
|
// folds; see examples/0144-types-const-expr-array-dim.sx. Only a dimension with
|
|
// a genuinely runtime operand halts here.)
|
|
//
|
|
// Regression (issue 0083): the stateless resolver printed a non-fatal warning
|
|
// and fabricated length 0, then let compilation continue — producing a 0-byte
|
|
// alloca and corrupt element access. It now yields the `.unresolved` sentinel,
|
|
// which the alias registration surfaces as this diagnostic, aborting the build
|
|
// with a non-zero exit.
|
|
#import "modules/std.sx";
|
|
|
|
get :: () -> i64 { return 5; }
|
|
BadArr :: [get()]i64;
|
|
|
|
main :: () {
|
|
a : BadArr = ---;
|
|
a[0] = 7;
|
|
print("a0={}\n", a[0]);
|
|
}
|