// STLport regression testsuite component. // To compile as a separate example, please #define MAIN. #include #include #ifdef MAIN #define list4_test main #endif #if !defined (STLPORT) || defined(__STL_USE_NAMESPACES) using namespace std; #endif int list4_test(int, char**) { cout<<"Results of list4_test:"< l1(array1, array1 + 4); list l2(array2, array2 + 2); l1.merge(l2); for(std::list::iterator i = l1.begin(); i != l1.end(); i++) cout << *i; cout << endl; return 0; }