blob: 05e8b112e5b3d91a72157ec0b3923f941f70b7bd [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.
//
//===----------------------------------------------------------------------===//
// <random>
// template<class IntType = int>
// class poisson_distribution
// {
// public:
// // types
// typedef RealType result_type;
#include <random>
#include <type_traits>
int main()
{
{
typedef std::poisson_distribution<> D;
typedef D::result_type result_type;
static_assert((std::is_same<result_type, int>::value), "");
}
{
typedef std::poisson_distribution<unsigned long long> D;
typedef D::result_type result_type;
static_assert((std::is_same<result_type, unsigned long long>::value), "");
}
}