Migrate the two #foreign-bearing diagnostic tests whose assertions survive the cutover, with INTENTIONAL snapshot regens (reviewed): - 1172 (foreign-symbol-conflict): decl '#foreign libc "getenv"' → 'extern libc "getenv"'. Still tests the dup-C-symbol conflict; the 'foreign symbol already bound' message is the keyword-neutral INTERNAL wording (renamed to 'extern symbol' in Phase 9.1), so it persists — only the echoed source line + caret moved. - 1228 (non-transitive C-import visibility): its identity was the #foreign≡extern equivalence lock, now historical (structural via the A→B gate + unified AST). The identifier 'c_foreign_abs' itself contained 'foreign' (would fail the Phase 9.4 gate), so converted c.sx/b.sx/main to two foreign-free extern symbols (c_abs_one/c_abs_two); still pins per-symbol non-transitive visibility. Reverted the orthogonal 0→1-byte empty-stdout normalization on 1228/1231 (known writeGolden idempotency quirk, not a behavior change). Suite green (647/444).
12 lines
443 B
Plaintext
12 lines
443 B
Plaintext
error: C function 'c_abs_one' not visible; add #import for the module that declares it
|
|
--> examples/1228-ffi-extern-c-non-transitive.sx:11:19
|
|
|
|
|
11 | print("{}\n", c_abs_one(-3));
|
|
| ^^^^^^^^^
|
|
|
|
error: C function 'c_abs_two' not visible; add #import for the module that declares it
|
|
--> examples/1228-ffi-extern-c-non-transitive.sx:12:19
|
|
|
|
|
12 | print("{}\n", c_abs_two(-4));
|
|
| ^^^^^^^^^
|