about summary refs log tree commit diff
path: root/tests/ui/panic-handler/panic-handler-bad-signature-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/panic-handler/panic-handler-bad-signature-1.rs')
-rw-r--r--tests/ui/panic-handler/panic-handler-bad-signature-1.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/panic-handler/panic-handler-bad-signature-1.rs b/tests/ui/panic-handler/panic-handler-bad-signature-1.rs
new file mode 100644
index 00000000000..775961d3fd7
--- /dev/null
+++ b/tests/ui/panic-handler/panic-handler-bad-signature-1.rs
@@ -0,0 +1,13 @@
+// compile-flags:-C panic=abort
+
+#![no_std]
+#![no_main]
+
+use core::panic::PanicInfo;
+
+#[panic_handler]
+fn panic(
+    info: PanicInfo, //~ ERROR argument should be `&PanicInfo`
+) -> () //~ ERROR return type should be `!`
+{
+}