blob: c2e04b2820c5b433176bd49732f3d1329e7dfb7f [file] [log] [blame]
// PR c++/99586
// { dg-do compile { target c++20 } }
template <class T>
struct B { constexpr B(T); };
template <auto> struct A{};
template <auto V> auto a = A<B{V}>{};