From 8b089a1a9f8849f70a98a3e489cae92aaac78cb4 Mon Sep 17 00:00:00 2001 From: lcnr Date: Fri, 27 May 2022 08:25:50 +0200 Subject: [PATCH] remove unnecessary change --- .../ui/span/issue-42234-unknown-receiver-type.full.stderr | 8 ++++---- .../issue-42234-unknown-receiver-type.generic_arg.stderr | 6 +++--- src/test/ui/span/issue-42234-unknown-receiver-type.rs | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/test/ui/span/issue-42234-unknown-receiver-type.full.stderr b/src/test/ui/span/issue-42234-unknown-receiver-type.full.stderr index 98e45ff9d07..cd3ffdc6f9d 100644 --- a/src/test/ui/span/issue-42234-unknown-receiver-type.full.stderr +++ b/src/test/ui/span/issue-42234-unknown-receiver-type.full.stderr @@ -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::; + | +++++ error[E0282]: type annotations needed --> $DIR/issue-42234-unknown-receiver-type.rs:15:10 diff --git a/src/test/ui/span/issue-42234-unknown-receiver-type.generic_arg.stderr b/src/test/ui/span/issue-42234-unknown-receiver-type.generic_arg.stderr index 0902ffa2621..b6a3f07f571 100644 --- a/src/test/ui/span/issue-42234-unknown-receiver-type.generic_arg.stderr +++ b/src/test/ui/span/issue-42234-unknown-receiver-type.generic_arg.stderr @@ -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::; - | ~~~~~ + | +++++ error[E0282]: type annotations needed --> $DIR/issue-42234-unknown-receiver-type.rs:15:10 diff --git a/src/test/ui/span/issue-42234-unknown-receiver-type.rs b/src/test/ui/span/issue-42234-unknown-receiver-type.rs index 93c66eb1301..fd53121204c 100644 --- a/src/test/ui/span/issue-42234-unknown-receiver-type.rs +++ b/src/test/ui/span/issue-42234-unknown-receiver-type.rs @@ -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(); }