| 9 | bool testSelfContaining(); |
| 10 | |
| 11 | int scrn() { |
| 12 | |
| 13 | fu2::unique_function<void(int, int)> fun = [](int /*a*/, int /*b*/) { |
| 14 | // ... |
| 15 | }; |
| 16 | |
| 17 | (void)fun; |
| 18 | return 0; |
| 19 | } |
| 20 | |
| 21 | // Issue #6 |
| 22 | TEST(build_tests, the_header_is_self_containing) { |
nothing calls this directly
no outgoing calls
no test coverage detected