Files
c3c/test/test_suite7/constants/constant_struct.c3
2025-02-23 13:53:04 +01:00

19 lines
126 B
Plaintext

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