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.
20 lines
546 B
Plaintext
20 lines
546 B
Plaintext
// Duplicate impl detection (same-file) — two `impl Into(MyA) for i64`
|
|
// declarations in the same file produce a "duplicate impl" diagnostic
|
|
// at registration time, not silently shadow one with the other. Sibling
|
|
// case to `examples/180-impl-duplicate.sx` which covers the
|
|
// cross-module variant.
|
|
|
|
#import "modules/std.sx";
|
|
|
|
MyA :: struct { v: i64 = 0; }
|
|
|
|
impl Into(MyA) for i64 {
|
|
convert :: (self: i64) -> MyA { .{ v = self } }
|
|
}
|
|
|
|
impl Into(MyA) for i64 {
|
|
convert :: (self: i64) -> MyA { .{ v = self * 2 } }
|
|
}
|
|
|
|
main :: () -> i32 { 0 }
|