mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
17 lines
229 B
Plaintext
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 |