| 35 | explicit TestOverloadObj(float y) : type(Type::FLOAT) {} |
| 36 | |
| 37 | static int AddOneInt(int x) { return x + 1; } |
| 38 | static float AddOneFloat(float x) { return x + 1.0f; } |
| 39 | |
| 40 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected