remove unnecessary change

This commit is contained in:
lcnr 2022-05-27 08:25:50 +02:00
parent 681736a6b2
commit 8b089a1a9f
3 changed files with 8 additions and 8 deletions

View File

@ -1,14 +1,14 @@
error[E0282]: type annotations needed
--> $DIR/issue-42234-unknown-receiver-type.rs:9:24
|
LL | let x: Option<_> = None::<_>;
| ^^^^^^^^^ cannot infer type of the type parameter `T` declared on the enum `Option`
LL | let x: Option<_> = None;
| ^^^^ cannot infer type of the type parameter `T` declared on the enum `Option`
|
= note: type must be known at this point
help: consider specifying the generic argument
|
LL | let x: Option<_> = None::<_>;
| ~~~~~
LL | let x: Option<_> = None::<T>;
| +++++
error[E0282]: type annotations needed
--> $DIR/issue-42234-unknown-receiver-type.rs:15:10

View File

@ -1,14 +1,14 @@
error[E0282]: type annotations needed
--> $DIR/issue-42234-unknown-receiver-type.rs:9:24
|
LL | let x: Option<_> = None::<_>;
| ^^^^^^^^^ cannot infer type of the type parameter `T` declared on the enum `Option`
LL | let x: Option<_> = None;
| ^^^^ cannot infer type of the type parameter `T` declared on the enum `Option`
|
= note: type must be known at this point
help: consider specifying the generic argument
|
LL | let x: Option<_> = None::<T>;
| ~~~~~
| +++++
error[E0282]: type annotations needed
--> $DIR/issue-42234-unknown-receiver-type.rs:15:10

View File

@ -6,7 +6,7 @@
// the fix of which this tests).
fn shines_a_beacon_through_the_darkness() {
let x: Option<_> = None::<_>; //~ ERROR type annotations needed
let x: Option<_> = None; //~ ERROR type annotations needed
x.unwrap().method_that_could_exist_on_some_type();
}