blob: f0ab9fc22a19c43cf19b69d852785c45079a49d7 [file] [log] [blame]
// PR c++/52824
// { dg-do compile { target c++11 } }
template<typename G, typename H>
struct foo
{};
template<typename... G>
struct bar : foo<G...>
{};
int main() {
bar<int, float> f;
}