16 fn/global examples across categories (0415/0602/0603/1024/1025/1605/1607-1609/ 1611/1616/1619/1622/1628/1635/1636): bare '#foreign'→'extern'. All cls=0 (no class forms). Marker'd ones (1605/1609/1611 + the rest) corpus-validated; the 3 unmarked uikit importers (1607/1608/1616) verified byte-identical via 'sx ir' probes. Empty snapshot diff; suite green (647 corpus / 444 unit, 0 failed). LEFT comment-only/provenance #foreign (0716/0729 + issues/0030-extern-global + extern-test files 1223-1231/1332/1348/1349/1426) and the keep-list (identity ffi-foreign-* + foreign-asserting diagnostics 1172/1174/1219/1228/1620) for Phase 8.
18 lines
568 B
Plaintext
18 lines
568 B
Plaintext
// Pins the curated-bindings shape (PLAN-C C0.2): a `#source`-only unit
|
|
// (no `#include`, so no auto-synthesized decls) paired with a
|
|
// hand-written `extern` decl naming the unit. Works in JIT and AOT
|
|
// today — but see 1620: the unit ref is not yet validated or scoped,
|
|
// so the symbol actually resolves globally, not through the unit.
|
|
#import "modules/std.sx";
|
|
|
|
only :: #import c {
|
|
#source "1619-cimport-source-only/only.c";
|
|
};
|
|
|
|
only_answer :: () -> i32 extern only "only_answer";
|
|
|
|
main :: () -> i32 {
|
|
print("answer = {}\n", only_answer() + 1);
|
|
0
|
|
}
|