[RISCV] Improve Errors for X1/X5/X1X5 Reg Classes (#126184)
[llvm-project.git] / libcxx / test / std / depr / depr.auto.ptr / auto.ptr / auto.ptr.members / release.pass.cpp
blob960ee0e738c8a71250b9edd220f9f200a7aa2b0f
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <memory>
11 // template <class X> class auto_ptr;
13 // X* release() throw();
15 // REQUIRES: c++03 || c++11 || c++14
16 // ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS
18 #include <memory>
19 #include <cassert>
21 #include "test_macros.h"
22 #include "../A.h"
24 void
25 test()
28 A* p = new A(1);
29 std::auto_ptr<A> ap(p);
30 A* p2 = ap.release();
31 assert(p2 == p);
32 assert(ap.get() == 0);
33 delete p;
35 assert(A::count == 0);
38 int main(int, char**)
40 test();
42 return 0;