about summary refs log tree commit diff
path: root/tests/ui/alloc-error/alloc-error-handler-bad-signature-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/alloc-error/alloc-error-handler-bad-signature-1.rs')
-rw-r--r--tests/ui/alloc-error/alloc-error-handler-bad-signature-1.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/ui/alloc-error/alloc-error-handler-bad-signature-1.rs b/tests/ui/alloc-error/alloc-error-handler-bad-signature-1.rs
deleted file mode 100644
index cd06423e3a5..00000000000
--- a/tests/ui/alloc-error/alloc-error-handler-bad-signature-1.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// compile-flags:-C panic=abort
-
-#![feature(alloc_error_handler)]
-#![no_std]
-#![no_main]
-
-use core::alloc::Layout;
-
-#[alloc_error_handler]
-fn oom(
-    info: &Layout, //~^ ERROR mismatched types
-) -> () //~^^ ERROR mismatched types
-{
-    loop {}
-}
-
-#[panic_handler]
-fn panic(_: &core::panic::PanicInfo) -> ! { loop {} }