blob: fbc28e5150d048930829aaf71d6fa18b76d39600 [file] [log] [blame]
// PR c++/90505 - mismatch in template argument deduction.
// { dg-do compile { target c++11 } }
template <typename> class a {
using b = int;
using c = int;
b d;
void e() { g<c>(d); }
template <typename... f> static void g(f...);
};