diff options
Diffstat (limited to 'src/boost/libs/integer/test/fail_uint_65.cpp')
-rw-r--r-- | src/boost/libs/integer/test/fail_uint_65.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/boost/libs/integer/test/fail_uint_65.cpp b/src/boost/libs/integer/test/fail_uint_65.cpp new file mode 100644 index 00000000..76b485e8 --- /dev/null +++ b/src/boost/libs/integer/test/fail_uint_65.cpp @@ -0,0 +1,13 @@ +// Copyright John Maddock 2012. +// Distributed under the Boost +// Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +#include <boost/integer.hpp> +#include <iostream> + +int main() +{ + std::cout << std::numeric_limits<boost::uint_t<65>::least>::digits; + return 0; +} |