c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / concepts-memtmpl5.C
blob3c83bb884859f7122e1631838ec1fdf131024664
1 // PR c++/101247
2 // { dg-do compile { target concepts } }
4 template<class T, class U> struct A {
5   template<class> static constexpr bool d = true;
6   static void g() requires d<U>;
7 };
9 int main() {
10   A<int, char>::g();