conv_fail_55.cpp 415 B

123456789101112131415
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Copyright 2012 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #include <boost/multiprecision/cpp_int.hpp>
  6. using namespace boost::multiprecision;
  7. int main()
  8. {
  9. int256_t i = 3;
  10. uint256_t j;
  11. j = i;
  12. }