borrowscope-macro 0.1.1

Procedural macros for BorrowScope ownership tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use borrowscope_macro::trace_borrow;

#[trace_borrow]
fn test_mutable_borrow() {
    let mut x = 42;
    let r = &mut x;
    *r = 100;
    assert_eq!(*r, 100);
}

fn main() {
    test_mutable_borrow();
}