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.
17 lines
617 B
Plaintext
17 lines
617 B
Plaintext
// A module-global enum-literal initializer naming a variant that does not exist
|
|
// must be rejected loudly — never silently zero-initialized to the first tag.
|
|
// Regression (issue 0082): the enum-literal global serializer resolves the tag
|
|
// against the destination enum type; an unknown variant emits a diagnostic and
|
|
// fails the build instead of falling back to a null (zero-tag) initializer.
|
|
// Expected: "'.purple' is not a variant of enum 'Color'"; exit 1.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
Color :: enum u8 { red; green; blue; }
|
|
bad : Color = .purple;
|
|
|
|
main :: () -> i32 {
|
|
print("{}\n", bad);
|
|
return 0;
|
|
}
|