mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
20 lines
156 B
Plaintext
20 lines
156 B
Plaintext
module foo;
|
|
|
|
faultdef TEST;
|
|
|
|
module bar;
|
|
import foo;
|
|
|
|
fn int? abc()
|
|
{
|
|
return foo::TEST~;
|
|
}
|
|
|
|
module baz;
|
|
import foo;
|
|
|
|
fn int? abc()
|
|
{
|
|
return foo::TEST~;
|
|
}
|