| 10779 | class ValueArray8 { |
| 10780 | public: |
| 10781 | ValueArray8(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, |
| 10782 | T8 v8) : v1_(v1), v2_(v2), v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), |
| 10783 | v8_(v8) {} |
| 10784 | |
| 10785 | template <typename T> |
| 10786 | operator ParamGenerator<T>() const { |
nothing calls this directly
no outgoing calls
no test coverage detected