blob: de5ee694fa41b2221d242a6c2d8055ece464712d [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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>
// template <class Key, class Compare = less<Key>,
// class Allocator = allocator<Key>>
// class multiset
// {
// public:
// // types:
// typedef Key key_type;
// typedef key_type value_type;
// typedef Compare key_compare;
// typedef key_compare value_compare;
// typedef Allocator allocator_type;
// typedef typename allocator_type::reference reference;
// typedef typename allocator_type::const_reference const_reference;
// typedef typename allocator_type::pointer pointer;
// typedef typename allocator_type::const_pointer const_pointer;
// typedef typename allocator_type::size_type size_type;
// typedef typename allocator_type::difference_type difference_type;
// ...
// };
#include <set>
#include <type_traits>
int main()
{
static_assert((std::is_same<std::multiset<int>::key_type, int>::value), "");
static_assert((std::is_same<std::multiset<int>::value_type, int>::value), "");
static_assert((std::is_same<std::multiset<int>::key_compare, std::less<int> >::value), "");
static_assert((std::is_same<std::multiset<int>::value_compare, std::less<int> >::value), "");
static_assert((std::is_same<std::multiset<int>::allocator_type, std::allocator<int> >::value), "");
static_assert((std::is_same<std::multiset<int>::reference, int&>::value), "");
static_assert((std::is_same<std::multiset<int>::const_reference, const int&>::value), "");
static_assert((std::is_same<std::multiset<int>::pointer, int*>::value), "");
static_assert((std::is_same<std::multiset<int>::const_pointer, const int*>::value), "");
static_assert((std::is_same<std::multiset<int>::size_type, std::size_t>::value), "");
static_assert((std::is_same<std::multiset<int>::difference_type, std::ptrdiff_t>::value), "");
}