blob: 40c454aae30171f7d5664ff2f00f1c187bb69cee [file] [log] [blame]
// { dg-do assemble }
template<class T>
class Array {
public:
typedef T T_numtype;
};
template<class T_array>
void f(T_array, typename T_array::T_numtype)
{
}
void g()
{
f(Array<float>(), float());
}