4 struct Iterator : virtual Base {};
5 bool operator==(const Iterator&, const Iterator&);
6 struct IteratorI : Iterator {};
9 bool operator==(const Obj&) const;
11 template <int>bool dummy()
17 main(int argc, char** argv)
19 IteratorI* it2 = new IteratorI();