diff options
Diffstat (limited to 'test/std/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp')
-rw-r--r-- | test/std/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/std/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp b/test/std/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp new file mode 100644 index 0000000000000..6b5d75042d3b3 --- /dev/null +++ b/test/std/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp @@ -0,0 +1,23 @@ +//===----------------------------------------------------------------------===// +// +// 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; +} |