1 // PR c++/90505 - mismatch in template argument deduction.
2 // { dg-do compile { target c++11 } }
3 
4 template <typename> class a {
5   using b = int;
6   using c = int;
7   b d;
e()8   void e() { g<c>(d); }
9   template <typename... f> static void g(f...);
10 };
11