1 2 3 4 5 6 7 8 9 10 11 12
use trace::trace; trace::init_depth_var!(); fn main() { foo(1); } #[trace(pause)] fn foo(a: i32) -> i32 { a }