summaryrefslogtreecommitdiffstats
path: root/src/test/ui/panic_implementation-closures.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/panic_implementation-closures.rs')
-rw-r--r--src/test/ui/panic_implementation-closures.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/panic_implementation-closures.rs b/src/test/ui/panic_implementation-closures.rs
deleted file mode 100644
index b96125aa9..000000000
--- a/src/test/ui/panic_implementation-closures.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-// build-pass (FIXME(62277): could be check-pass?)
-
-#![crate_type = "rlib"]
-#![no_std]
-
-#[panic_handler]
-pub fn panic_fmt(_: &::core::panic::PanicInfo) -> ! {
- |x: u8| x;
- loop {}
-}