c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / lambda-uneval7.C
blobefe3691d8c9ee390f4d21683ef7959edb11bdc0b
1 // { dg-do compile { target c++20 } }
3 template <int N>
4 struct A { };
6 template <int N>
7 void g(A<[]{return N;}()>) {}
9 int main()
11   g<1>({});