Test: int_overflow.cpp int_overflow.cpp:41:9: error: expected unqualified-id before 'return' 41 | return static_cast(total); | ^~~~~~ int_overflow.cpp:42:5: error: expected declaration before '}' token 42 | } | ^ int_overflow.cpp: In function 'void printOrder(int, int)': int_overflow.cpp:45:21: error: 'calculateTotal' was not declared in this scope 45 | int total = calculateTotal(price, qty); | ^~~~~~~~~~~~~~ int_overflow.cpp: At global scope: int_overflow.cpp:48:1: error: expected declaration before '}' token 48 | }; | ^ int_overflow.cpp:50:5: error: redefinition of 'int main()' 50 | int main() { | ^~~~ int_overflow.cpp:27:5: note: 'int main()' previously defined here 27 | int main() { | ^~~~