mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
17 lines
192 B
Plaintext
17 lines
192 B
Plaintext
// #target: macos-x64
|
|
module test;
|
|
import bar;
|
|
|
|
alias BazTest = Baz{Test}; // #error: Recursive definition of 'BazTest'
|
|
|
|
struct Test
|
|
{
|
|
BazTest t;
|
|
}
|
|
|
|
module bar{Test};
|
|
|
|
struct Baz
|
|
{
|
|
Test a;
|
|
} |