// PR c++/100474 // { dg-do compile { target c++20 } } struct S { S() = delete; S(const S&); }; template concept Aggregate = __is_aggregate(T); // { dg-message "'S' is not an aggregate" "" { target *-*-* } .-1 } template concept TriviallyCopyable = __is_trivially_copyable(T); // { dg-message "'S' is not trivially copyable" "" { target *-*-* } .-1 } template concept Assignable = __is_assignable(T, U); // { dg-message "'S' is not assignable from 'int'" "" { target *-*-* } .-1 } template concept TriviallyAssignable = __is_trivially_assignable(T, U); // { dg-message "'S' is not trivially assignable from 'int'" "" { target *-*-* } .-1 } template concept NothrowAssignable = __is_nothrow_assignable(T, U); // { dg-message "'S' is not nothrow assignable from 'int'" "" { target *-*-* } .-1 } template concept Constructible = __is_constructible(T, Args...); // { dg-message "'S' is not default constructible" "" { target *-*-* } .-1 } // { dg-message "'S' is not constructible from 'int'" "" { target *-*-* } .-2 } // { dg-message "'S' is not constructible from 'int, char'" "" { target *-*-* } .-3 } template concept TriviallyConstructible = __is_trivially_constructible(T, Args...); // { dg-message "'S' is not trivially default constructible" "" { target *-*-* } .-1 } // { dg-message "'S' is not trivially constructible from 'int'" "" { target *-*-* } .-2 } // { dg-message "'S' is not trivially constructible from 'int, char'" "" { target *-*-* } .-3 } template concept NothrowConstructible = __is_nothrow_constructible(T, Args...); // { dg-message "'S' is not nothrow default constructible" "" { target *-*-* } .-1 } // { dg-message "'S' is not nothrow constructible from 'int'" "" { target *-*-* } .-2 } // { dg-message "'S' is not nothrow constructible from 'int, char'" "" { target *-*-* } .-3 } template concept UniqueObjReps = __has_unique_object_representations(T); // { dg-message "'S' does not have unique object representations" "" { target *-*-* } .-1 } static_assert(Aggregate); // { dg-error "assert" } static_assert(TriviallyCopyable); // { dg-error "assert" } static_assert(Assignable); // { dg-error "assert" } static_assert(TriviallyAssignable); // { dg-error "assert" } static_assert(NothrowAssignable); // { dg-error "assert" } static_assert(Constructible); // { dg-error "assert" } static_assert(Constructible); // { dg-error "assert" } static_assert(Constructible); // { dg-error "assert" } static_assert(TriviallyConstructible); // { dg-error "assert" } static_assert(TriviallyConstructible); // { dg-error "assert" } static_assert(TriviallyConstructible); // { dg-error "assert" } static_assert(NothrowConstructible); // { dg-error "assert" } static_assert(NothrowConstructible); // { dg-error "assert" } static_assert(NothrowConstructible); // { dg-error "assert" } static_assert(UniqueObjReps); // { dg-error "assert" }