about summary refs log tree commit diff
path: root/tests/crashes/130425.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/crashes/130425.rs')
-rw-r--r--tests/crashes/130425.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/crashes/130425.rs b/tests/crashes/130425.rs
deleted file mode 100644
index 559b86f7bc2..00000000000
--- a/tests/crashes/130425.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-//@ known-bug: #130425
-//@ compile-flags: -Zmir-opt-level=5 -Zpolymorphize=on
-
-struct S<T>(T)
-where
-    [T; (
-        |_: u8| {
-            static FOO: Sync = AtomicUsize::new(0);
-            unsafe { &*(&FOO as *const _ as *const usize) }
-        },
-        1,
-    )
-        .1]: Copy;