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).
6 lines
276 B
Plaintext
6 lines
276 B
Plaintext
// Two lib-less `extern` C-symbol imports: each declares a C function
|
|
// resolved at link time with no library reference. Both are policed by
|
|
// the non-transitive C-import visibility gate, per-symbol.
|
|
c_abs_one :: (x: i32) -> i32 extern;
|
|
c_abs_two :: (x: i32) -> i32 extern;
|