mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
23 lines
159 B
C
23 lines
159 B
C
module foo;
|
|
|
|
fault Baz
|
|
{
|
|
TEST
|
|
}
|
|
|
|
module bar;
|
|
import foo;
|
|
|
|
fn int! abc()
|
|
{
|
|
return Baz.TEST?;
|
|
}
|
|
|
|
module baz;
|
|
import foo;
|
|
|
|
fn int! abc()
|
|
{
|
|
return Baz.TEST?;
|
|
}
|