diff --git a/test/containers/associative/map/map.cons/default_recursive.pass.cpp b/test/containers/associative/map/map.cons/default_recursive.pass.cpp index 485822d4..5dab7a6f 100644 --- a/test/containers/associative/map/map.cons/default_recursive.pass.cpp +++ b/test/containers/associative/map/map.cons/default_recursive.pass.cpp @@ -14,11 +14,12 @@ // map(); #include -#include + +struct X +{ + std::multimap m; +}; int main() { - std::map, std::map > m; - assert(m.empty()); - assert(m.begin() == m.end()); } diff --git a/test/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp b/test/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp deleted file mode 100644 index 2f62ea17..00000000 --- a/test/containers/associative/multimap/multimap.cons/default_recursive.pass.cpp +++ /dev/null @@ -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. -// -//===----------------------------------------------------------------------===// - -// - -// class multimap - -// multimap(); - -#include -#include - -int main() -{ - std::multimap, std::multimap > m; - assert(m.empty()); - assert(m.begin() == m.end()); -} diff --git a/test/containers/associative/multiset/multiset.cons/default_recursive.pass.cpp b/test/containers/associative/multiset/multiset.cons/default_recursive.pass.cpp deleted file mode 100644 index 95e3e194..00000000 --- a/test/containers/associative/multiset/multiset.cons/default_recursive.pass.cpp +++ /dev/null @@ -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. -// -//===----------------------------------------------------------------------===// - -// - -// class multiset - -// multiset(); - -#include -#include - -int main() -{ - std::multiset > m; - assert(m.empty()); - assert(m.begin() == m.end()); -} diff --git a/test/containers/associative/set/set.cons/default_recursive.pass.cpp b/test/containers/associative/set/set.cons/default_recursive.pass.cpp deleted file mode 100644 index 307addf1..00000000 --- a/test/containers/associative/set/set.cons/default_recursive.pass.cpp +++ /dev/null @@ -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. -// -//===----------------------------------------------------------------------===// - -// - -// class set - -// set(); - -#include -#include - -int main() -{ - std::set > s; - assert(s.empty()); - assert(s.begin() == s.end()); -}