summaryrefslogtreecommitdiff
path: root/test/std/numerics/rand/rand.device/entropy.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/numerics/rand/rand.device/entropy.pass.cpp')
-rw-r--r--test/std/numerics/rand/rand.device/entropy.pass.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/std/numerics/rand/rand.device/entropy.pass.cpp b/test/std/numerics/rand/rand.device/entropy.pass.cpp
deleted file mode 100644
index 141a84a6d9bda..0000000000000
--- a/test/std/numerics/rand/rand.device/entropy.pass.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// 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 random_device;
-
-// double entropy() const;
-
-#include <random>
-#include <cassert>
-
-int main()
-{
- std::random_device r;
- double e = r.entropy();
- ((void)e); // Prevent unused warning
-}