| 34 | #if defined(__cpp_concepts) |
| 35 | "compiles"_test = [] { |
| 36 | struct foo { |
| 37 | int value{}; |
| 38 | }; |
| 39 | struct bar {}; |
| 40 | |
| 41 | expect([](auto t) { return requires { t.value; }; }(foo{})); |
nothing calls this directly
no outgoing calls
no test coverage detected