| 10704 | class ValueArray5 { |
| 10705 | public: |
| 10706 | ValueArray5(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5) : v1_(v1), v2_(v2), v3_(v3), |
| 10707 | v4_(v4), v5_(v5) {} |
| 10708 | |
| 10709 | template <typename T> |
| 10710 | operator ParamGenerator<T>() const { |
nothing calls this directly
no outgoing calls
no test coverage detected