blob: 4a80745293a7716f7c54234da9645f2c8f79cf29 [file] [log] [blame]
// PR c++/56774
// { dg-require-effective-target c++11 }
template <class ... Args>
struct mytype {};
template <class T, class ... Args>
void something( mytype<T, Args...> )
{ }
int main()
{
something<int, char, bool>( mytype<int, char, bool>() );
}