20 lines
182 B
Plaintext
20 lines
182 B
Plaintext
# function call with too few arguments
|
|
|
|
# Output:
|
|
# #semantic_error#
|
|
|
|
# Exit:
|
|
# 200
|
|
|
|
# Program:
|
|
|
|
begin
|
|
int f(int a, int b) is
|
|
return 0
|
|
end
|
|
int x = call f(1);
|
|
println x
|
|
end
|
|
|
|
|