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