| 2101 | |
| 2102 | template <typename T> |
| 2103 | struct test_ab |
| 2104 | { |
| 2105 | test_ab(const std::string& e, const std::string& v0, const std::string& v1, const T& r) |
| 2106 | : expr(e) |
| 2107 | , a(v0) |
| 2108 | , b(v1) |
| 2109 | , c("ccc") |
| 2110 | , result(r) |
| 2111 | {} |
| 2112 | |
| 2113 | std::string expr; |
| 2114 | std::string a; |
| 2115 | std::string b; |
| 2116 | std::string c; |
| 2117 | T result; |
| 2118 | }; |
| 2119 | |
| 2120 | template <typename T> |
| 2121 | bool run_test02() |
nothing calls this directly
no outgoing calls
no test coverage detected