diff options
| author | Amanieu d'Antras <amanieu@gmail.com> | 2023-03-22 23:43:20 +0000 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2023-04-16 08:35:50 -0700 |
| commit | abc0660118cc95f47445fd33502a11dd448f5968 (patch) | |
| tree | e512943318f4d7b9cd82070fa66209b4fe10e7cf /tests/ui/alloc-error/alloc-error-handler-bad-signature-2.rs | |
| parent | c9a6e41026d7aa27d897fb83e995447719753076 (diff) | |
| download | rust-abc0660118cc95f47445fd33502a11dd448f5968.tar.gz rust-abc0660118cc95f47445fd33502a11dd448f5968.zip | |
Remove #[alloc_error_handler] from the compiler and library
Diffstat (limited to 'tests/ui/alloc-error/alloc-error-handler-bad-signature-2.rs')
| -rw-r--r-- | tests/ui/alloc-error/alloc-error-handler-bad-signature-2.rs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/ui/alloc-error/alloc-error-handler-bad-signature-2.rs b/tests/ui/alloc-error/alloc-error-handler-bad-signature-2.rs deleted file mode 100644 index 4f76257fc72..00000000000 --- a/tests/ui/alloc-error/alloc-error-handler-bad-signature-2.rs +++ /dev/null @@ -1,17 +0,0 @@ -// compile-flags:-C panic=abort - -#![feature(alloc_error_handler)] -#![no_std] -#![no_main] - -struct Layout; - -#[alloc_error_handler] -fn oom( - info: Layout, //~^ ERROR mismatched types -) { //~^^ ERROR mismatched types - loop {} -} - -#[panic_handler] -fn panic(_: &core::panic::PanicInfo) -> ! { loop {} } |
