jompiler/tests/test-return.c

10 lines
No EOL
115 B
C

// test-return.c
int return_test(int x)
{
return x;
}
int main(int argc, int argv)
{
return return_test(42);
}