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