mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
14 lines
189 B
C
14 lines
189 B
C
module test;
|
|
|
|
private Foo a;
|
|
|
|
struct Foo
|
|
{
|
|
int x;
|
|
double a;
|
|
}
|
|
|
|
// #expect: test.ll
|
|
|
|
%Foo = type { i32, double }
|
|
@test_a = protected unnamed_addr global %Foo zeroinitializer, align 8 |