blob: 6b5d75042d3b3ea000258c64f1bc679c3c87b631 [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;
// seed_seq();
#include <random>
int main()
{
std::seed_seq s0;
std::seed_seq s;
s = s0;
}