#include<iostream.h>
#include<LINK/basic/MSet.h>

main()
{
	MSet<int> mset1;
	SortedList<int> slist; 

	for (int i=0; i<3; i++) {
		mset1.insert(i);
		slist.insert(i);
	}


	//List<int> list1(mset1);     // illegal - Containers must be 
				      // constructed with other Containers

	if (mset1 == slist)
		cout << "(" << mset1 <<" == " << slist << ")" << endl;
}
