| 63 | // Source: https://en.cppreference.com/w/cpp/language/constraints |
| 64 | template<typename T> |
| 65 | static constexpr bool get_value() { return T::value; } |
| 66 | |
| 67 | template<typename T> |
| 68 | requires (sizeof(T) > 1 && get_value<T>()) |
nothing calls this directly
no outgoing calls
no test coverage detected