about summary refs log tree commit diff
path: root/tests/ui/allocator/no_std-alloc-error-handler-default.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/allocator/no_std-alloc-error-handler-default.rs')
-rw-r--r--tests/ui/allocator/no_std-alloc-error-handler-default.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/ui/allocator/no_std-alloc-error-handler-default.rs b/tests/ui/allocator/no_std-alloc-error-handler-default.rs
index b9289d9fb81..51ecf1a6731 100644
--- a/tests/ui/allocator/no_std-alloc-error-handler-default.rs
+++ b/tests/ui/allocator/no_std-alloc-error-handler-default.rs
@@ -6,12 +6,13 @@
 //@ compile-flags:-C panic=abort
 //@ aux-build:helper.rs
 
-#![feature(rustc_private, lang_items)]
+#![feature(rustc_private, lang_items, panic_unwind)]
 #![no_std]
 #![no_main]
 
 extern crate alloc;
 extern crate libc;
+extern crate unwind; // For _Unwind_Resume
 
 // ARM targets need these symbols
 #[no_mangle]