2019-09-10 02:56:34 +00:00
|
|
|
// run-rustfix
|
|
|
|
// rustfix-only-machine-applicable
|
2019-11-19 08:32:35 +00:00
|
|
|
|
2019-09-10 02:56:34 +00:00
|
|
|
use std::ffi::OsString;
|
|
|
|
use std::path::Path;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _s = ["lorem", "ipsum"].join(" ");
|
|
|
|
|
|
|
|
let s = String::from("foo");
|
|
|
|
let _s = s;
|
|
|
|
|
|
|
|
let s = String::from("foo");
|
|
|
|
let _s = s;
|
|
|
|
|
|
|
|
let s = String::from("foo");
|
|
|
|
let _s = s;
|
|
|
|
|
|
|
|
let _s = Path::new("/a/b/").join("c");
|
|
|
|
|
2020-01-08 04:59:58 +00:00
|
|
|
let _s = Path::new("/a/b/").join("c");
|
2019-09-10 02:56:34 +00:00
|
|
|
|
|
|
|
let _s = OsString::new();
|
|
|
|
|
2020-01-08 04:59:58 +00:00
|
|
|
let _s = OsString::new();
|
2019-09-10 02:56:34 +00:00
|
|
|
|
|
|
|
// Check that lint level works
|
|
|
|
#[allow(clippy::redundant_clone)]
|
|
|
|
let _s = String::new().to_string();
|
|
|
|
|
|
|
|
let tup = (String::from("foo"),);
|
|
|
|
let _t = tup.0;
|
|
|
|
|
|
|
|
let tup_ref = &(String::from("foo"),);
|
|
|
|
let _s = tup_ref.0.clone(); // this `.clone()` cannot be removed
|
|
|
|
|
|
|
|
{
|
|
|
|
let x = String::new();
|
|
|
|
let y = &x;
|
|
|
|
|
|
|
|
let _x = x.clone(); // ok; `x` is borrowed by `y`
|
|
|
|
|
|
|
|
let _ = y.len();
|
|
|
|
}
|
|
|
|
|
|
|
|
let x = (String::new(),);
|
|
|
|
let _ = Some(String::new()).unwrap_or_else(|| x.0.clone()); // ok; closure borrows `x`
|
|
|
|
|
|
|
|
with_branch(Alpha, true);
|
2019-11-22 13:24:38 +00:00
|
|
|
cannot_double_move(Alpha);
|
2019-09-10 02:56:34 +00:00
|
|
|
cannot_move_from_type_with_drop();
|
|
|
|
borrower_propagation();
|
2020-03-12 15:31:09 +00:00
|
|
|
not_consumed();
|
2019-09-10 02:56:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct Alpha;
|
|
|
|
fn with_branch(a: Alpha, b: bool) -> (Alpha, Alpha) {
|
|
|
|
if b {
|
|
|
|
(a.clone(), a)
|
|
|
|
} else {
|
|
|
|
(Alpha, a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-22 13:24:38 +00:00
|
|
|
fn cannot_double_move(a: Alpha) -> (Alpha, Alpha) {
|
|
|
|
(a.clone(), a)
|
|
|
|
}
|
|
|
|
|
2019-09-10 02:56:34 +00:00
|
|
|
struct TypeWithDrop {
|
|
|
|
x: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for TypeWithDrop {
|
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cannot_move_from_type_with_drop() -> String {
|
|
|
|
let s = TypeWithDrop { x: String::new() };
|
|
|
|
s.x.clone() // removing this `clone()` summons E0509
|
|
|
|
}
|
|
|
|
|
|
|
|
fn borrower_propagation() {
|
|
|
|
let s = String::new();
|
|
|
|
let t = String::new();
|
|
|
|
|
|
|
|
{
|
|
|
|
fn b() -> bool {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
let _u = if b() { &s } else { &t };
|
|
|
|
|
|
|
|
// ok; `s` and `t` are possibly borrowed
|
|
|
|
let _s = s.clone();
|
|
|
|
let _t = t.clone();
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
let _u = || s.len();
|
|
|
|
let _v = [&t; 32];
|
|
|
|
let _s = s.clone(); // ok
|
|
|
|
let _t = t.clone(); // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
let _u = {
|
|
|
|
let u = Some(&s);
|
|
|
|
let _ = s.clone(); // ok
|
|
|
|
u
|
|
|
|
};
|
|
|
|
let _s = s.clone(); // ok
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
use std::convert::identity as id;
|
|
|
|
let _u = id(id(&s));
|
|
|
|
let _s = s.clone(); // ok, `u` borrows `s`
|
|
|
|
}
|
|
|
|
|
|
|
|
let _s = s;
|
|
|
|
let _t = t;
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
struct Foo {
|
|
|
|
x: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
let f = Foo { x: 123 };
|
|
|
|
let _x = Some(f.x);
|
|
|
|
let _f = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
let f = Foo { x: 123 };
|
|
|
|
let _x = &f.x;
|
|
|
|
let _f = f.clone(); // ok
|
|
|
|
}
|
|
|
|
}
|
2020-03-12 15:31:09 +00:00
|
|
|
|
|
|
|
fn not_consumed() {
|
|
|
|
let x = std::path::PathBuf::from("home");
|
|
|
|
let y = x.join("matthias");
|
|
|
|
// join() creates a new owned PathBuf, does not take a &mut to x variable, thus the .clone() is
|
|
|
|
// redundant. (It also does not consume the PathBuf)
|
|
|
|
|
|
|
|
println!("x: {:?}, y: {:?}", x, y);
|
2020-03-12 16:25:18 +00:00
|
|
|
|
|
|
|
let mut s = String::new();
|
|
|
|
s.clone().push_str("foo"); // OK, removing this `clone()` will change the behavior.
|
|
|
|
s.push_str("bar");
|
|
|
|
assert_eq!(s, "bar");
|
2020-03-12 15:31:09 +00:00
|
|
|
}
|