| 10662 | class ValueArray3 { |
| 10663 | public: |
| 10664 | ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {} |
| 10665 | |
| 10666 | template <typename T> |
| 10667 | operator ParamGenerator<T>() const { |
nothing calls this directly
no outgoing calls
no test coverage detected