blob: 95e3e1944dbd6976184723e15bfa4ffa825fb400 [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>
// class multiset
// multiset();
#include <set>
#include <cassert>
int main()
{
std::multiset<std::multiset<int> > m;
assert(m.empty());
assert(m.begin() == m.end());
}