PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ttp-derived1.C
blob4238eef9238465e30da354aeba13c081ec870882
1 // PR c++/60177
3 template<class> struct Base { };
5 struct Derived : Base<void> { };
7 template<template<typename> class TT, typename T>
8 void func (TT<T>) { }
10 int main () {
11   func (Derived ());