1 2 3 4 5 6 7 8 9 10
use borrowscope_macro::trace_borrow; #[trace_borrow] fn example() { let x = 5; } fn main() { example(); }