rust-clippy/tests/ui/mut_range_bound.rs

67 lines
1.4 KiB
Rust
Raw Normal View History

2018-10-06 16:18:06 +00:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2017-08-15 16:41:59 +00:00
2017-08-30 17:07:25 +00:00
#![allow(unused)]
2017-08-15 16:41:59 +00:00
fn main() {
mut_range_bound_upper();
mut_range_bound_lower();
mut_range_bound_both();
mut_range_bound_no_mutation();
2017-08-15 16:41:59 +00:00
immut_range_bound();
mut_borrow_range_bound();
immut_borrow_range_bound();
2017-08-15 16:41:59 +00:00
}
fn mut_range_bound_upper() {
let mut m = 4;
2017-09-26 01:32:05 +00:00
for i in 0..m { m = 5; } // warning
2017-08-15 16:41:59 +00:00
}
fn mut_range_bound_lower() {
let mut m = 4;
for i in m..10 { m *= 2; } // warning
2017-08-15 16:41:59 +00:00
}
fn mut_range_bound_both() {
let mut m = 4;
let mut n = 6;
for i in m..n { m = 5; n = 7; } // warning (1 for each mutated bound)
}
fn mut_range_bound_no_mutation() {
let mut m = 4;
for i in 0..m { continue; } // no warning
2017-08-15 16:41:59 +00:00
}
fn mut_borrow_range_bound() {
let mut m = 4;
for i in 0..m {
2017-09-26 01:32:05 +00:00
let n = &mut m; // warning
*n += 1;
}
}
fn immut_borrow_range_bound() {
let mut m = 4;
for i in 0..m {
let n = &m; // should be no warning?
}
}
2017-08-15 16:41:59 +00:00
fn immut_range_bound() {
let m = 4;
for i in 0..m { continue; } // no warning
}