blob: 9c6d6f93bda9dddb83690102d5ff04ba66bfb7da [file] [log] [blame]
// PR c++/88819
// { dg-do compile { target c++20 } }
template<typename T, template<T> class TT, class R = TT <0>> struct A
{
template<R> struct B {};
};
template<int> struct C {};
A<int, C, C<0>> a;