Files
c3c/test/test_suite/constants/constant_struct.c3

19 lines
127 B
C

import std::io;
struct Abc
{
int a;
}
struct Bcd
{
Abc x;
}
const Abc FOO = { 2 };
fn void! main()
{
Bcd a = { FOO };
}