cargo fmt

This commit is contained in:
Lotte Steenbrink 2021-01-22 15:18:18 +01:00
parent 19af229d0b
commit 92e61650b2

View file

@ -23,7 +23,10 @@ fn spam() {
// allocate and initialize one kilobyte of stack memory to provoke stack overflow
let use_stack = [0xAA_u32; 1024];
log::info!("address of current `use_stack`: {:?}", &use_stack as *const u32);
log::info!(
"address of current `use_stack`: {:?}",
&use_stack as *const u32
);
spam(); // infinite recursion
}