mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
13 lines
144 B
C
13 lines
144 B
C
module foo;
|
|
import bar;
|
|
fn void run()
|
|
{
|
|
bar::test();
|
|
}
|
|
|
|
module bar;
|
|
import baz;
|
|
macro test() { baz::test(); }
|
|
|
|
module baz;
|
|
fn void test() {} |