Files
c3c/resources/testfragments/file1.c3
2021-11-16 17:46:44 +01:00

18 lines
179 B
C

module baz;
import bar;
struct Foo
{
int x;
int y;
}
//define bar::blub(Foo, 1) as fooblub;
public fn void main()
{
Foo f = { 3, 4 };
//Foo g = fooblub(&f);
}