namespace std { template struct normal_iterator { normal_iterator() {} template normal_iterator(normal_iterator) {} }; template struct basic_string { typedef normal_iterator iterator; }; typedef basic_string wstring; }