fail_uint_65.cpp 338 B

12345678910111213
  1. // Copyright John Maddock 2012.
  2. // 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/integer.hpp>
  6. #include <iostream>
  7. int main()
  8. {
  9. std::cout << std::numeric_limits<boost::uint_t<65>::least>::digits;
  10. return 0;
  11. }