blob: 430d9b781d2b09fa13704394558481700d1e185a [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>
// class seed_seq
// {
// public:
// // types
// typedef uint_least32_t result_type;
#include <random>
#include <type_traits>
int main()
{
static_assert((std::is_same<std::seed_seq::result_type, std::uint_least32_t>::value), "");
}