1 // PR c++/52824
2 // { dg-do compile { target c++11 } }
3 
4 template<typename G, typename H>
5 struct foo
6 {};
7 
8 template<typename... G>
9 struct bar : foo<G...>
10 {};
11 
main()12 int main() {
13   bar<int, float> f;
14 }
15