summaryrefslogtreecommitdiffstats
path: root/tests/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/alloc-error/alloc-error-handler-bad-signature-3.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/alloc-error/alloc-error-handler-bad-signature-3.rs b/tests/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
new file mode 100644
index 000000000..ea9ad39a7
--- /dev/null
+++ b/tests/ui/alloc-error/alloc-error-handler-bad-signature-3.rs
@@ -0,0 +1,15 @@
+// compile-flags:-C panic=abort
+
+#![feature(alloc_error_handler)]
+#![no_std]
+#![no_main]
+
+struct Layout;
+
+#[alloc_error_handler]
+fn oom() -> ! { //~ ERROR function takes 0 arguments but 1 argument was supplied
+ loop {}
+}
+
+#[panic_handler]
+fn panic(_: &core::panic::PanicInfo) -> ! { loop {} }