#include struct S {}; template void foobar(T &&) {} #if CPP_CXX_CONCEPTS template requires concepts::totally_ordered void foobar(T &&) {} #endif int main() { std::pair p; foobar(p); }