rust-clippy/tests/compile-fail/swap.rs

45 lines
1.1 KiB
Rust
Raw Normal View History

2016-02-27 23:01:15 +00:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(clippy)]
#![allow(unused_assignments)]
2016-02-27 23:46:02 +00:00
struct Foo(u32);
2016-02-27 23:01:15 +00:00
fn main() {
let mut a = 42;
let mut b = 1337;
a = b;
b = a;
//~^^ ERROR this looks like you are trying to swap `a` and `b`
//~| HELP try
2016-02-27 23:46:02 +00:00
//~| SUGGESTION std::mem::swap(&mut a, &mut b);
//~| NOTE or maybe you should use `std::mem::replace`?
let t = a;
a = b;
b = t;
//~^^^ ERROR this looks like you are swapping `a` and `b` manually
//~| HELP try
//~| SUGGESTION std::mem::swap(&mut a, &mut b);
//~| NOTE or maybe you should use `std::mem::replace`?
let mut c = Foo(42);
c.0 = a;
a = c.0;
//~^^ ERROR this looks like you are trying to swap `c.0` and `a`
//~| HELP try
//~| SUGGESTION std::mem::swap(&mut c.0, &mut a);
//~| NOTE or maybe you should use `std::mem::replace`?
let t = c.0;
c.0 = a;
a = t;
//~^^^ ERROR this looks like you are swapping `c.0` and `a` manually
//~| HELP try
//~| SUGGESTION std::mem::swap(&mut c.0, &mut a);
2016-02-27 23:01:15 +00:00
//~| NOTE or maybe you should use `std::mem::replace`?
}