blob: 8f77e6440c939bf45801656ac84106d6ea2541e6 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// Adaptation to Boost of the libcxx
// Copyright 2010 Vicente J. Botet Escriba
// Distributed under the Boost Software License, Version 1.0.
// See http://www.boost.org/LICENSE_1_0.txt
// test ratio: the absolute values of the template arguments N and D
// must be representable by type intmax_t.
#include <boost/ratio/ratio.hpp>
#include <cstdint>
void test()
{
const boost::intmax_t t1 = boost::ratio<0x8000000000000000ULL, 1>::num;
(void)t1;
}