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