Good.h 268 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 template <class T> struct iterator { void Compare(const iterator &x) { } friend void Check(iterator) {} }; template <class T = int> struct Box { iterator<T> I; void test() { Check(I); I.Compare(I); } }; // Force instantiation of Box<int> Box<> B;