2 // We need to do arg-dep lookup for g<T>(j) at instantiation time because
3 // g<T> is dependent, even though (j) is not; at that point we can find
6 template <typename T> int g(int);
8 template <typename T> int l(){h j; return g<T>(j);}
9 template <typename T> int g(const h&);
11 int jj(){return l<j>();}