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/list1.cpp

29 lines
642 B
C++

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