summaryrefslogtreecommitdiffstats
path: root/src/test/ui/panic-runtime/two-panic-runtimes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/panic-runtime/two-panic-runtimes.rs')
-rw-r--r--src/test/ui/panic-runtime/two-panic-runtimes.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/panic-runtime/two-panic-runtimes.rs b/src/test/ui/panic-runtime/two-panic-runtimes.rs
deleted file mode 100644
index 7ec658ebc..000000000
--- a/src/test/ui/panic-runtime/two-panic-runtimes.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// build-fail
-// dont-check-compiler-stderr
-// error-pattern:cannot link together two panic runtimes: panic_runtime_unwind and panic_runtime_unwind2
-// aux-build:panic-runtime-unwind.rs
-// aux-build:panic-runtime-unwind2.rs
-// aux-build:panic-runtime-lang-items.rs
-
-#![no_std]
-#![no_main]
-
-extern crate panic_runtime_unwind;
-extern crate panic_runtime_unwind2;
-extern crate panic_runtime_lang_items;
-
-fn main() {}