rust/tests/ui/redundant_clone.rs

68 lines
1.6 KiB
Rust
Raw Normal View History

2018-10-23 09:01:45 +02:00
// Copyright 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.
#![warn(clippy::redundant_clone)]
use std::ffi::OsString;
2018-12-09 23:26:16 +01:00
use std::path::Path;
2018-10-23 09:01:45 +02:00
fn main() {
let _ = ["lorem", "ipsum"].join(" ").to_string();
let s = String::from("foo");
let _ = s.clone();
let s = String::from("foo");
let _ = s.to_string();
let s = String::from("foo");
let _ = s.to_owned();
let _ = Path::new("/a/b/").join("c").to_owned();
let _ = Path::new("/a/b/").join("c").to_path_buf();
let _ = OsString::new().to_owned();
let _ = OsString::new().to_os_string();
2018-10-25 14:08:32 +02:00
// Check that lint level works
2018-12-09 23:26:16 +01:00
#[allow(clippy::redundant_clone)]
let _ = String::new().to_string();
2018-12-09 12:19:21 +01:00
let tup = (String::from("foo"),);
let _ = tup.0.clone();
let tup_ref = &(String::from("foo"),);
let _s = tup_ref.0.clone(); // this `.clone()` cannot be removed
2018-10-23 09:01:45 +02:00
}
#[derive(Clone)]
struct Alpha;
fn with_branch(a: Alpha, b: bool) -> (Alpha, Alpha) {
if b {
2018-10-23 09:01:45 +02:00
(a.clone(), a.clone())
} else {
(Alpha, a)
}
}
2018-12-09 12:19:21 +01: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() };
2018-12-09 12:19:21 +01:00
s.x.clone() // removing this `clone()` summons E0509
}