Skip to content

Commit

Permalink
Auto merge of #4089 - flip1995:id_conv_reg_test, r=Manishearth
Browse files Browse the repository at this point in the history
Add regression test for identity_conversion FP

cc #3913 #4082 #3936

changelog: none
  • Loading branch information
bors committed May 12, 2019
2 parents 2122bdb + a5bcaf5 commit c79838e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions tests/ui/identity_conversion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,21 @@ fn test_questionmark() -> Result<(), ()> {
Ok(())
}

fn test_issue_3913() -> Result<(), std::io::Error> {
use std::fs;
use std::path::Path;

let path = Path::new(".");
for _ in fs::read_dir(path)? {}

Ok(())
}

fn main() {
test_generic(10i32);
test_generic2::<i32, i32>(10i32);
test_questionmark().unwrap();
test_issue_3913().unwrap();

let _: String = "foo".into();
let _: String = From::from("foo");
Expand Down
14 changes: 7 additions & 7 deletions tests/ui/identity_conversion.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -23,43 +23,43 @@ LL | let _: i32 = 0i32.into();
| ^^^^^^^^^^^ help: consider removing `.into()`: `0i32`

error: identical conversion
--> $DIR/identity_conversion.rs:38:21
--> $DIR/identity_conversion.rs:49:21
|
LL | let _: String = "foo".to_string().into();
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `"foo".to_string()`

error: identical conversion
--> $DIR/identity_conversion.rs:39:21
--> $DIR/identity_conversion.rs:50:21
|
LL | let _: String = From::from("foo".to_string());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `From::from()`: `"foo".to_string()`

error: identical conversion
--> $DIR/identity_conversion.rs:40:13
--> $DIR/identity_conversion.rs:51:13
|
LL | let _ = String::from("foo".to_string());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `"foo".to_string()`

error: identical conversion
--> $DIR/identity_conversion.rs:41:13
--> $DIR/identity_conversion.rs:52:13
|
LL | let _ = String::from(format!("A: {:04}", 123));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `format!("A: {:04}", 123)`

error: identical conversion
--> $DIR/identity_conversion.rs:42:13
--> $DIR/identity_conversion.rs:53:13
|
LL | let _ = "".lines().into_iter();
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `"".lines()`

error: identical conversion
--> $DIR/identity_conversion.rs:43:13
--> $DIR/identity_conversion.rs:54:13
|
LL | let _ = vec![1, 2, 3].into_iter().into_iter();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into_iter()`: `vec![1, 2, 3].into_iter()`

error: identical conversion
--> $DIR/identity_conversion.rs:44:21
--> $DIR/identity_conversion.rs:55:21
|
LL | let _: String = format!("Hello {}", "world").into();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `format!("Hello {}", "world")`
Expand Down

0 comments on commit c79838e

Please sign in to comment.