#![allow(unused_variables)] #![feature(allocator_api)] fn main() { fn _inner() -> core::result::Result<(), impl core::fmt::Debug> { use std::sync::Arc; use std::alloc::System; let five = Arc::try_new_in(5, System)?; Ok::<(), std::alloc::AllocError>(()) } _inner().unwrap() }