summaryrefslogtreecommitdiffstats
path: root/libcxx/test/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp')
-rw-r--r--libcxx/test/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/libcxx/test/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp b/libcxx/test/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp
new file mode 100644
index 00000000000..a408c2fbe4e
--- /dev/null
+++ b/libcxx/test/numerics/rand/rand.util/rand.util.seedseq/assign.fail.cpp
@@ -0,0 +1,23 @@
+//===----------------------------------------------------------------------===//
+//
+// ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. 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;
+}
OpenPOWER on IntegriCloud