blob: 60af4bc81a9992be9140e484c854937bbd7b95d1 [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 exponential_distribution
// result_type min() const;
#include <random>
#include <cassert>
int main()
{
{
typedef std::exponential_distribution<> D;
D d(.5);
assert(d.min() == 0);
}
}