| 12 | namespace te = boost::te; |
| 13 | |
| 14 | struct Addable { |
| 15 | constexpr auto add(int i) -> REQUIRES(int, add, i); |
| 16 | constexpr auto add(int a, int b) -> REQUIRES(int, add, a, b); |
| 17 | }; |
| 18 | |
| 19 | class Calc { |
| 20 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected