c++: P0847R7 (deducing this) - xobj lambdas. [PR102609]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp2a / nontype-class42.C
blobc2e04b2820c5b433176bd49732f3d1329e7dfb7f
1 // PR c++/99586
2 // { dg-do compile { target c++20 } }
4 template <class T>
5 struct B { constexpr B(T); };
7 template <auto> struct A{};
8 template <auto V> auto a = A<B{V}>{};