| 59 | { |
| 60 | struct no_methods {}; |
| 61 | struct lower_method { |
| 62 | void lower(int) {} |
| 63 | }; |
| 64 | |
| 65 | BOOST_TEST_TRAIT_FALSE((has_method_lower<no_methods>)); |
| 66 | BOOST_TEST_TRAIT_TRUE((has_method_lower<lower_method>)); |
nothing calls this directly
no outgoing calls
no test coverage detected