summaryrefslogtreecommitdiffstats
path: root/tests/ui/thread-local/thread-local-static.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/thread-local/thread-local-static.rs')
-rw-r--r--tests/ui/thread-local/thread-local-static.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/ui/thread-local/thread-local-static.rs b/tests/ui/thread-local/thread-local-static.rs
index c7fee9e6b..afaffbb7e 100644
--- a/tests/ui/thread-local/thread-local-static.rs
+++ b/tests/ui/thread-local/thread-local-static.rs
@@ -1,7 +1,10 @@
// edition:2018
+// revisions: mir thir
+//thir: -Zthir-unsafeck
#![feature(thread_local)]
#![feature(const_swap)]
+
#[thread_local]
static mut STATIC_VAR_2: [u32; 8] = [4; 8];
const fn g(x: &mut [u32; 8]) {