summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-negative-impls-safe-rpass.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-negative-impls-safe-rpass.rs')
-rw-r--r--src/test/ui/coherence/coherence-negative-impls-safe-rpass.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/coherence/coherence-negative-impls-safe-rpass.rs b/src/test/ui/coherence/coherence-negative-impls-safe-rpass.rs
deleted file mode 100644
index b87e162ac..000000000
--- a/src/test/ui/coherence/coherence-negative-impls-safe-rpass.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-// run-pass
-#![allow(dead_code)]
-// pretty-expanded FIXME #23616
-
-#![feature(negative_impls)]
-
-use std::marker::Send;
-
-struct TestType;
-
-impl !Send for TestType {}
-
-fn main() {}