| 120 | |
| 121 | struct SlowValue {}; |
| 122 | void computeSomethingSlowly( |
| 123 | const std::string& /*parameter*/, |
| 124 | std::function<void(const SlowValue&)> f) { |
| 125 | f(SlowValue()); |
| 126 | } |
| 127 | |
| 128 | template <typename T> void doSomething(const T&) {} |
| 129 |
no test coverage detected