1 // Test for P0195R2 variadic using.
2 // { dg-do compile { target c++11 } }
5 struct A { void f(); };
6 struct B { void f(int); };
8 template <class... Bases> struct C: Bases...
10 using Bases::f...; // { dg-warning "pack expansion" "" { target c++14_down } }