[CodeGen][NewPM] Port RegisterCoalescer to NPM (#124698)
[llvm-project.git] / libcxx / test / std / numerics / rand / rand.dist / rand.dist.pois / rand.dist.pois.exp / max.pass.cpp
blob123bff6626176ced792579e4af67bf97ff2316c3
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // <random>
11 // template<class RealType = double>
12 // class exponential_distribution
14 // result_type max() const;
16 #include <random>
18 #include <cassert>
19 #include <limits>
21 #include "test_macros.h"
23 int main(int, char**)
26 typedef std::exponential_distribution<> D;
27 D d(.25);
28 D::result_type m = d.max();
29 assert(m == std::numeric_limits<D::result_type>::infinity());
32 return 0;