blob: ef593ff614b8296c04d2eb86a7fbb979230ffa10 [file] [log] [blame]
// PR c++/84937
// { dg-do compile { target c++17 } }
template<int, int> struct A {};
template<int I> struct B
{
template<auto J> B(A<I,J>);
};
B b(A<0,0>{});