Files
c3c/resources/testfragments/file1.c3
2020-10-16 18:11:30 +02:00

18 lines
181 B
C

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