remove unnecessary change
This commit is contained in:
parent
681736a6b2
commit
8b089a1a9f
@ -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
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user