Home | History | Annotate | Download | only in list.ops
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // Can't test the system lib because this test enables debug mode
     11 // UNSUPPORTED: with_system_cxx_lib
     12 
     13 // <list>
     14 
     15 // void splice(const_iterator position, list<T,Allocator>& x, iterator i);
     16 
     17 #define _LIBCPP_DEBUG 1
     18 #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
     19 
     20 #include <list>
     21 #include <cstdlib>
     22 #include <cassert>
     23 
     24 int main()
     25 {
     26     {
     27         std::list<int> v1(3);
     28         std::list<int> v2(3);
     29         v1.splice(v1.begin(), v2, v1.begin());
     30         assert(false);
     31     }
     32 }
     33