6 lines
67 B
Text
6 lines
67 B
Text
|
|
void f(int x, int y) {return;}
|
||
|
|
int g() {
|
||
|
|
f(0,1,2);
|
||
|
|
return 0;
|
||
|
|
}
|