flowistry 0.5.44

Modular information flow analysis
1
2
3
4
5
6
fn main() {
  let mut x = [0u8; 2];
  let y = &mut x[..1];
  y[0] = 0;
  `(x)`;
}