Files
c3c/test/test_suite/globals/extern_const.c3t
2025-10-25 15:55:25 +02:00

17 lines
229 B
Plaintext

// #target: macos-x64
module test;
extern const int FOO @cname("foo1");
fn int main()
{
return FOO;
}
module bar;
const int FOO @export("foo1") = 123;
/* #expect: bar.ll
@foo1 = local_unnamed_addr constant i32 123, align 4