rust/tests/ui/array-slice-vec/mutability-inherits-through-fixed-length-vec.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
272 B
Rust
Raw Normal View History

// run-pass
fn test1() {
2015-01-25 15:05:03 -06:00
let mut ints = [0; 32];
ints[0] += 1;
assert_eq!(ints[0], 1);
}
fn test2() {
2015-01-25 15:05:03 -06:00
let mut ints = [0; 32];
for i in &mut ints { *i += 22; }
for i in &ints { assert_eq!(*i, 22); }
}
pub fn main() {
test1();
test2();
}