The test below asserts that variadic arguments containing modifiable references are correctly forwarded
| 178 | // The test below asserts that variadic arguments containing modifiable references are correctly forwarded |
| 179 | // |
| 180 | bool function_with_input_output_params(int input1, int& output2) |
| 181 | { |
| 182 | output2 = input1 + 1; |
| 183 | return true; |
| 184 | } |
| 185 | void void_function_with_input_output_params(int input1, int& output2) |
| 186 | { |
| 187 | output2 = input1 + 1; |
nothing calls this directly
no outgoing calls
no test coverage detected