minic/tests/13.test

12 lines
96 B
Plaintext

int add(int a, int b)
{
return a + b;
}
int main()
{
int a; // test of scope
return 0;
}