blob: f12a0519bfca5178cebb15983a7e34f1f17e1c50 [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 RealType = double>
// class chi_squared_distribution
// param_type param() const;
#include <random>
#include <cassert>
int main()
{
{
typedef std::chi_squared_distribution<> D;
typedef D::param_type P;
P p(.125);
D d(p);
assert(d.param() == p);
}
}