diff options
Diffstat (limited to 'libcxx/test/containers/associative/set/set.cons/default_recursive.pass.cpp')
-rw-r--r-- | libcxx/test/containers/associative/set/set.cons/default_recursive.pass.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/libcxx/test/containers/associative/set/set.cons/default_recursive.pass.cpp b/libcxx/test/containers/associative/set/set.cons/default_recursive.pass.cpp deleted file mode 100644 index 307addf108d..00000000000 --- a/libcxx/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. -// -//===----------------------------------------------------------------------===// - -// <set> - -// class set - -// set(); - -#include <set> -#include <cassert> - -int main() -{ - std::set<std::set<int> > s; - assert(s.empty()); - assert(s.begin() == s.end()); -} |