summaryrefslogtreecommitdiff
path: root/libcxx/test/containers/associative/set/insert_iter_cv.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/containers/associative/set/insert_iter_cv.pass.cpp')
-rw-r--r--libcxx/test/containers/associative/set/insert_iter_cv.pass.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/libcxx/test/containers/associative/set/insert_iter_cv.pass.cpp b/libcxx/test/containers/associative/set/insert_iter_cv.pass.cpp
deleted file mode 100644
index 78ce18337c93..000000000000
--- a/libcxx/test/containers/associative/set/insert_iter_cv.pass.cpp
+++ /dev/null
@@ -1,45 +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
-
-// iterator insert(const_iterator position, const value_type& v);
-
-#include <set>
-#include <cassert>
-
-int main()
-{
- {
- typedef std::set<int> M;
- typedef M::iterator R;
- M m;
- R r = m.insert(m.cend(), M::value_type(2));
- assert(r == m.begin());
- assert(m.size() == 1);
- assert(*r == 2);
-
- r = m.insert(m.cend(), M::value_type(1));
- assert(r == m.begin());
- assert(m.size() == 2);
- assert(*r == 1);
-
- r = m.insert(m.cend(), M::value_type(3));
- assert(r == prev(m.end()));
- assert(m.size() == 3);
- assert(*r == 3);
-
- r = m.insert(m.cend(), M::value_type(3));
- assert(r == prev(m.end()));
- assert(m.size() == 3);
- assert(*r == 3);
- }
-}