blob: 8f36bf7a37fd7c7b1e2b1f81a6cb95e4ae9b0389 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <random>
// class bernoulli_distribution
// result_type min() const;
#include <random>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
{
typedef std::bernoulli_distribution D;
D d(.5);
assert(d.min() == false);
}
return 0;
}