error: `#[alloc_error_handler]` function required, but not found ``` ###The`#[alloc_error_handler]`Attribute As we learned when discussing the`GlobalAlloc`trait, the`alloc`function can signal an allocation error
When we now try to compile it, the first error should be gone. Let's fix the remaining second error: ``` error: `#[alloc_error_handler]` function required, but not found ``` ### The `#[alloc_error_handler]` Attribute As we learned when discussing the `GlobalAlloc` trait, the `...