array_fail_ap_spa_mc.cpp 335 B

12345678910111213141516171819
  1. //
  2. // Copyright (c) 2012 Peter Dimov
  3. //
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. #include <boost/shared_ptr.hpp>
  9. #include <memory>
  10. struct X
  11. {
  12. };
  13. int main()
  14. {
  15. boost::shared_ptr<X[]> px2(( std::auto_ptr<X>() ));
  16. }