(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
is_constructible6.C
// Verify we respect the order of trailing arguments passed to
// __is_constructible.

struct A { };
struct B { };
struct C { C(A, B); };

extern int n[true];
extern int n[ __is_constructible(C, A, B)];
extern int n[!__is_constructible(C, B, A)];