rs6000: Consider explicit VSX when masking off ALTIVEC [PR115688]
[official-gcc.git] / gcc / testsuite / g++.dg / concepts / pr67249.C
blob75f0ea0e4eaccc66729619aad6a3f28f399acb75
1 // { dg-do compile { target c++17_only } }
2 // { dg-options "-fconcepts-ts" }
4 template<class T> concept bool C1 = true;
5 template<class A, class B> struct Pair {};
6 void f(Pair<auto, C1>);