blob: 71611db42ccd2079096b63ecb4dd1e8f2bf15251 [file] [log] [blame]
// PR c++/65333
// { dg-do compile { target c++11 } }
template <typename T, T... Values> struct A
{
using type = int;
template <type... Suffix> using array = A<type, Values..., Suffix...>;
void
m_fn1 ()
{
array<>::data;
}
};