Files
FC1/STLPORT/test/regression/list4.cpp
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

28 lines
598 B
C++

// STLport regression testsuite component.
// To compile as a separate example, please #define MAIN.
#include <iostream>
#include <list>
#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:"<<endl;
int array1 [] = { 1, 3, 6, 7 };
int array2 [] = { 2, 4 };
list<int> l1(array1, array1 + 4);
list<int> l2(array2, array2 + 2);
l1.merge(l2);
for(std::list<int>::iterator i = l1.begin(); i != l1.end(); i++)
cout << *i;
cout << endl;
return 0;
}