Home | History | Annotate | Download | only in auto.ptr.conv
      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 // <memory>
     11 
     12 // template <class X> class auto_ptr;
     13 
     14 // template<class Y> operator auto_ptr<Y>() throw();
     15 
     16 // REQUIRES: c++98 || c++03 || c++11 || c++14
     17 
     18 #include <memory>
     19 #include <cassert>
     20 
     21 #include "../AB.h"
     22 
     23 std::auto_ptr<B>
     24 source()
     25 {
     26     return std::auto_ptr<B>(new B(1));
     27 }
     28 
     29 void
     30 test()
     31 {
     32     std::auto_ptr<A> ap2(source());
     33 }
     34 
     35 int main()
     36 {
     37     test();
     38 }
     39