mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
175 B
Plaintext
11 lines
175 B
Plaintext
struct Test
|
|
{
|
|
struct { int x; }
|
|
}
|
|
|
|
fn void main()
|
|
{
|
|
Test t;
|
|
Test.membersof[0].get(t).x;
|
|
Test.membersof[0].get(t).y; // #error: here is no field or method 'Test.(anon).y'
|
|
} |