flowistry 0.5.44

Modular information flow analysis
1
2
3
4
5
6
7
8
9
10
// y should be relevant b/c it could be involved in computation of x

fn foo(x: &mut i32, y: i32) {}

fn main() {
  `[let mut x = 1;]`
  `[let y = 2;]`
  `[foo(&mut x, y);]`
  `[x;]`
}