9 lines
74 B
Plaintext
9 lines
74 B
Plaintext
|
int f1 (int i){
|
||
|
int x = i;
|
||
|
}
|
||
|
|
||
|
test{
|
||
|
int x = call f1 (13);
|
||
|
print x;
|
||
|
}
|