mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
20 lines
272 B
Rust
20 lines
272 B
Rust
// run-pass
|
|
|
|
|
|
fn test1() {
|
|
let mut ints = [0; 32];
|
|
ints[0] += 1;
|
|
assert_eq!(ints[0], 1);
|
|
}
|
|
|
|
fn test2() {
|
|
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();
|
|
}
|