Corrected tests for http://llvm.org/bugs/show_bug.cgi?id=9351
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@128807 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b8a03c763a
commit
3e93e96dff
@ -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());
|
||||
}
|
||||
|
@ -1,24 +0,0 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <map>
|
||||
|
||||
// class multimap
|
||||
|
||||
// multimap();
|
||||
|
||||
#include <map>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::multimap<std::multimap<int,double>, std::multimap<int, double> > m;
|
||||
assert(m.empty());
|
||||
assert(m.begin() == m.end());
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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());
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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 set
|
||||
|
||||
// set();
|
||||
|
||||
#include <set>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
std::set<std::set<int> > s;
|
||||
assert(s.empty());
|
||||
assert(s.begin() == s.end());
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user