The test below asserts that variadic arguments containing modifiable references are correctly forwarded
| 163 | // The test below asserts that variadic arguments containing modifiable references are correctly forwarded |
| 164 | // |
| 165 | bool function_with_input_output_params(int input1, int& output2) |
| 166 | { |
| 167 | output2 = input1 + 1; |
| 168 | return true; |
| 169 | } |
| 170 | void void_function_with_input_output_params(int input1, int& output2) |
| 171 | { |
| 172 | output2 = input1 + 1; |
nothing calls this directly
no outgoing calls
no test coverage detected