| 1284 | return f(8, 2.5, 3);\r\n\ |
| 1285 | }\r\n\ |
| 1286 | auto f1(int x, y, z){ return x * y + z; }\r\n\ |
| 1287 | auto f2(int x, float y, int z){ return x * y + z; }\r\n\ |
| 1288 | return average(f1) + int(average(f2));"; |
| 1289 | TEST_RESULT("specialization for function pointer 2", testGeneric95, "42"); |
| 1290 |
no outgoing calls
no test coverage detected