mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-11 13:18:43 +02:00
Actually use panic_halt in example.
This commit is contained in:
parent
d84c93010a
commit
9068b63e76
@ -17,9 +17,9 @@
|
|||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
|
extern crate panic_halt as _;
|
||||||
|
|
||||||
use alloc::{string::ToString, vec::Vec};
|
use alloc::{string::ToString, vec::Vec};
|
||||||
use core::panic::PanicInfo;
|
|
||||||
use buddy_system_allocator::LockedHeap;
|
use buddy_system_allocator::LockedHeap;
|
||||||
|
|
||||||
#[global_allocator]
|
#[global_allocator]
|
||||||
@ -40,9 +40,3 @@ pub fn entry() {
|
|||||||
let mut v = Vec::new();
|
let mut v = Vec::new();
|
||||||
v.push("A string".to_string());
|
v.push("A string".to_string());
|
||||||
}
|
}
|
||||||
// ANCHOR_END: Alloc
|
|
||||||
|
|
||||||
#[panic_handler]
|
|
||||||
fn panic(_panic: &PanicInfo) -> ! {
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user