blob: 07b8e3a89ba2e878af18c2e6fda169fea4ccbcd6 [file] [log] [blame]
// { dg-do compile { target c++17_only } }
// { dg-options "-fconcepts" }
#include <cassert>
// Check partial ordering during overload resolution.
template<typename T>
concept bool C() { return __is_class(T); }
template<typename T>
concept bool D() { return C<T>() and __is_empty(T); }
struct S1 { } s1;
struct S2 { int n; } s2;
int called = 0;
template<C T> void f1(T x) { called = 1;}
template<D T> void f1(T x) { called = 2;}
int main() {
f1(s1); assert(called == 2);
f1(s2); assert(called == 1);
}