2015-09-06 14:46:46 -04:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
// <set>
|
|
|
|
|
|
2016-07-23 16:47:26 -04:00
|
|
|
// class multiset
|
|
|
|
|
|
|
|
|
|
// insert(...)
|
|
|
|
|
|
|
|
|
|
// UNSUPPORTED: c++98, c++03
|
|
|
|
|
|
2015-09-06 14:46:46 -04:00
|
|
|
#include <set>
|
|
|
|
|
|
2016-07-23 16:47:26 -04:00
|
|
|
#include "container_test_types.h"
|
|
|
|
|
#include "../../set_allocator_requirement_test_templates.h"
|
2015-09-06 14:46:46 -04:00
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{
|
2016-07-23 16:47:26 -04:00
|
|
|
testMultisetInsert<TCT::multiset<> >();
|
2015-09-06 14:46:46 -04:00
|
|
|
}
|