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 https://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <boost/integer.hpp>
7 #include <iostream>
8 
main()9 int main()
10 {
11  std::cout << std::numeric_limits<boost::uint_t<65>::least>::digits;
12  return 0;
13 }
14