1 #include <boost/config.hpp>
2 
3 #if defined(BOOST_MSVC)
4 #pragma warning(disable: 4786)  // identifier truncated in debug info
5 #pragma warning(disable: 4710)  // function not inlined
6 #pragma warning(disable: 4711)  // function selected for automatic inline expansion
7 #pragma warning(disable: 4514)  // unreferenced inline removed
8 #endif
9 
10 //
11 //  auto_ptr_lv_fail.cpp - a negative test for converting an auto_ptr to shared_ptr
12 //
13 //  Copyright 2009 Peter Dimov
14 //
15 //  Distributed under the Boost Software License, Version 1.0.
16 //  See accompanying file LICENSE_1_0.txt or copy at
17 //  http://www.boost.org/LICENSE_1_0.txt
18 //
19 
20 #include <boost/shared_ptr.hpp>
21 #include <memory>
22 
f(boost::shared_ptr<int>)23 void f( boost::shared_ptr<int> )
24 {
25 }
26 
main()27 int main()
28 {
29     std::auto_ptr<int> p;
30     f( p ); // must fail
31     return 0;
32 }
33