| 75 | auto f0 = []() -> bool { return false; }; |
| 76 | auto f1 = [](int x) -> bool { return x > 1; }; |
| 77 | struct F2 |
| 78 | { |
| 79 | std::unique_ptr<int> i; |
| 80 | bool operator()(int) const { return false; } |
| 81 | }; |
| 82 | F2 f2; |
| 83 | test( |
| 84 | REQUIRE(!lyra::detail::unary_lambda_traits<decltype(f0)>::isValid)); |
nothing calls this directly
no outgoing calls
no test coverage detected