Files
c3c/resources/testproject/bar.c3
2021-06-28 21:33:31 +02:00

15 lines
171 B
C

module bar;
import baz::foo;
import testbaz::zab;
func void test()
{
Foo x;
baz::foo::test();
foo::test();
baz::foo::Foo y;
foo::Foo d;
Zab z;
}