[gcn] install.texi: Update for new ISA targets and their requirements
[gcc.git] / gcc / testsuite / g++.dg / concepts / placeholder6.C
blob767cca6a0548b10106e824482f36bdd1f316c14b
1 // { dg-do compile { target c++17 } }
2 // { dg-options "-fconcepts" }
4 template <int I> struct B { static const int i = I; };
5 template <int I> concept Few = I < 10;
7 constexpr int g(B<Few> b); // { dg-error "does not constrain a type|invalid" }