git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@128807 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2011-04-04 01:42:30 +00:00
parent b8a03c763a
commit 3e93e96dff
4 changed files with 5 additions and 76 deletions

View File

@@ -14,11 +14,12 @@
// map();
#include <map>
#include <cassert>
struct X
{
std::multimap<int, X> m;
};
int main()
{
std::map<std::map<int,double>, std::map<int, double> > m;
assert(m.empty());
assert(m.begin() == m.end());
}