Skip to content

Commit

Permalink
Rustup to rustc 1.41.0-nightly (d1da8023d 2019-11-19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Nov 19, 2019
1 parent aa5a95f commit d183bda
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 29 deletions.
3 changes: 0 additions & 3 deletions tests/ui/missing_const_for_fn/cant_be_const.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,8 @@ fn random_caller() -> u32 {

static Y: u32 = 0;

// We should not suggest to make this function `const` because const functions are not allowed to
// refer to a static variable
fn get_y() -> u32 {
Y
//~^ ERROR E0013
}

// Don't lint entrypoint functions
Expand Down
1 change: 1 addition & 0 deletions tests/ui/redundant_clone.fixed
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// run-rustfix
// rustfix-only-machine-applicable

use std::ffi::OsString;
use std::path::Path;

Expand Down
1 change: 1 addition & 0 deletions tests/ui/redundant_clone.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// run-rustfix
// rustfix-only-machine-applicable

use std::ffi::OsString;
use std::path::Path;

Expand Down
52 changes: 26 additions & 26 deletions tests/ui/redundant_clone.stderr
Original file line number Diff line number Diff line change
@@ -1,156 +1,156 @@
error: redundant clone
--> $DIR/redundant_clone.rs:7:42
--> $DIR/redundant_clone.rs:8:42
|
LL | let _s = ["lorem", "ipsum"].join(" ").to_string();
| ^^^^^^^^^^^^ help: remove this
|
= note: `-D clippy::redundant-clone` implied by `-D warnings`
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:7:14
--> $DIR/redundant_clone.rs:8:14
|
LL | let _s = ["lorem", "ipsum"].join(" ").to_string();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: redundant clone
--> $DIR/redundant_clone.rs:10:15
--> $DIR/redundant_clone.rs:11:15
|
LL | let _s = s.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:10:14
--> $DIR/redundant_clone.rs:11:14
|
LL | let _s = s.clone();
| ^

error: redundant clone
--> $DIR/redundant_clone.rs:13:15
--> $DIR/redundant_clone.rs:14:15
|
LL | let _s = s.to_string();
| ^^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:13:14
--> $DIR/redundant_clone.rs:14:14
|
LL | let _s = s.to_string();
| ^

error: redundant clone
--> $DIR/redundant_clone.rs:16:15
--> $DIR/redundant_clone.rs:17:15
|
LL | let _s = s.to_owned();
| ^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:16:14
--> $DIR/redundant_clone.rs:17:14
|
LL | let _s = s.to_owned();
| ^

error: redundant clone
--> $DIR/redundant_clone.rs:18:42
--> $DIR/redundant_clone.rs:19:42
|
LL | let _s = Path::new("/a/b/").join("c").to_owned();
| ^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:18:14
--> $DIR/redundant_clone.rs:19:14
|
LL | let _s = Path::new("/a/b/").join("c").to_owned();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: redundant clone
--> $DIR/redundant_clone.rs:20:42
--> $DIR/redundant_clone.rs:21:42
|
LL | let _s = Path::new("/a/b/").join("c").to_path_buf();
| ^^^^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:20:14
--> $DIR/redundant_clone.rs:21:14
|
LL | let _s = Path::new("/a/b/").join("c").to_path_buf();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: redundant clone
--> $DIR/redundant_clone.rs:22:29
--> $DIR/redundant_clone.rs:23:29
|
LL | let _s = OsString::new().to_owned();
| ^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:22:14
--> $DIR/redundant_clone.rs:23:14
|
LL | let _s = OsString::new().to_owned();
| ^^^^^^^^^^^^^^^

error: redundant clone
--> $DIR/redundant_clone.rs:24:29
--> $DIR/redundant_clone.rs:25:29
|
LL | let _s = OsString::new().to_os_string();
| ^^^^^^^^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:24:14
--> $DIR/redundant_clone.rs:25:14
|
LL | let _s = OsString::new().to_os_string();
| ^^^^^^^^^^^^^^^

error: redundant clone
--> $DIR/redundant_clone.rs:31:19
--> $DIR/redundant_clone.rs:32:19
|
LL | let _t = tup.0.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:31:14
--> $DIR/redundant_clone.rs:32:14
|
LL | let _t = tup.0.clone();
| ^^^^^

error: redundant clone
--> $DIR/redundant_clone.rs:57:22
--> $DIR/redundant_clone.rs:58:22
|
LL | (a.clone(), a.clone())
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:57:21
--> $DIR/redundant_clone.rs:58:21
|
LL | (a.clone(), a.clone())
| ^

error: redundant clone
--> $DIR/redundant_clone.rs:113:15
--> $DIR/redundant_clone.rs:114:15
|
LL | let _s = s.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:113:14
--> $DIR/redundant_clone.rs:114:14
|
LL | let _s = s.clone();
| ^

error: redundant clone
--> $DIR/redundant_clone.rs:114:15
--> $DIR/redundant_clone.rs:115:15
|
LL | let _t = t.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:114:14
--> $DIR/redundant_clone.rs:115:14
|
LL | let _t = t.clone();
| ^

error: redundant clone
--> $DIR/redundant_clone.rs:124:19
--> $DIR/redundant_clone.rs:125:19
|
LL | let _f = f.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> $DIR/redundant_clone.rs:124:18
--> $DIR/redundant_clone.rs:125:18
|
LL | let _f = f.clone();
| ^
Expand Down

0 comments on commit d183bda

Please sign in to comment.