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