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