blob: f0e48484302b59488c676f75b49eb6c6b08cd90d [file] [log] [blame]
// Build don't link:
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());
}