This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/dm/stlport/test/regression/list4.cpp

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;
}