summaryrefslogtreecommitdiffstats
path: root/src/test/codegen/auxiliary/thread_local_aux.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen/auxiliary/thread_local_aux.rs')
-rw-r--r--src/test/codegen/auxiliary/thread_local_aux.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/test/codegen/auxiliary/thread_local_aux.rs b/src/test/codegen/auxiliary/thread_local_aux.rs
deleted file mode 100644
index bebaa7754..000000000
--- a/src/test/codegen/auxiliary/thread_local_aux.rs
+++ /dev/null
@@ -1,5 +0,0 @@
-#![crate_type = "lib"]
-
-use std::cell::Cell;
-
-thread_local!(pub static A: Cell<u64> = const { Cell::new(0) });