1### Compilation failed: 2 3error: 3: expected '(' to begin constructor invocation 4void expect_constructor_invocation() { int x = int; } 5 ^ 6error: 4: expected '(' to begin constructor invocation 7void expect_constructor_invocation_extra_initializer() { int x, y = int; } 8 ^ 9error: 5: expected '(' to begin function call 10void expect_function_call() { int x = func; } 11 ^ 12error: 6: expected '(' to begin function call 13void expect_function_call_extra_initializer() { int x, y = func; } 14 ^ 15error: 8: expected '(' to begin constructor invocation 16int g_expect_constructor_invocation = int; 17 ^ 18error: 9: expected '(' to begin constructor invocation 19int g_expect_constructor_invocation_extra_initializer, ix = int; 20 ^ 21error: 10: expected '(' to begin function call 22int g_expect_function_call = func; 23 ^ 24error: 11: expected '(' to begin function call 25int g_expect_function_call_extra_initializer, iy = func; 26 ^ 278 errors 28