about summary refs log tree commit diff
path: root/pkgs/test/cc-wrapper/atomics.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/test/cc-wrapper/atomics.cc')
-rw-r--r--pkgs/test/cc-wrapper/atomics.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/pkgs/test/cc-wrapper/atomics.cc b/pkgs/test/cc-wrapper/atomics.cc
deleted file mode 100644
index 23601ae92f0b..000000000000
--- a/pkgs/test/cc-wrapper/atomics.cc
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <atomic>
-#include <cstdint>
-
-int main()
-{
-  std::atomic_int x = {0};
-  return !std::atomic_is_lock_free(&x);
-}