cxx/test/numerics/rand/rand.dis/rand.dist.uni/rand.dist.uni.real/get_param.pass.cpp
2010-05-11 21:36:01 +00:00

30 lines
675 B
C++

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <random>
// template<class RealType = double>
// class uniform_real_distribution
// param_type param() const;
#include <random>
#include <cassert>
int main()
{
{
typedef std::uniform_real_distribution<> D;
typedef D::param_type P;
P p(3, 8);
D d(p);
assert(d.param() == p);
}
}