summaryrefslogtreecommitdiffstats
path: root/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bernoulli/copy.pass.cpp
blob: 129e223b2d403c6f847597b3160cfac3f3bfacad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <random>

// class bernoulli_distribution

// bernoulli_distribution(const bernoulli_distribution&);

#include <random>
#include <cassert>

void
test1()
{
    typedef std::bernoulli_distribution D;
    D d1(0.75);
    D d2 = d1;
    assert(d1 == d2);
}

int main()
{
    test1();
}
OpenPOWER on IntegriCloud