Files
Ink-Shader-Language/test/codegen/function_call_out_of_order_declaration.golden
2024-06-09 21:34:23 +02:00

12 lines
60 B
Plaintext

void foo();
void vs_main()
{
foo();
}
void foo()
{
}