Files
Ink/test/codegen/function_call.golden

13 lines
72 B
Plaintext

int foo();
int foo()
{
return 4;
}
void vs_main()
{
foo();
}