about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/test/ui/span/issue-42234-unknown-receiver-type.full.stderr8
-rw-r--r--src/test/ui/span/issue-42234-unknown-receiver-type.generic_arg.stderr6
-rw-r--r--src/test/ui/span/issue-42234-unknown-receiver-type.rs2
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::<T>;
+   |                            +++++
 
 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::<T>;
-   |                            ~~~~~
+   |                            +++++
 
 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();
 }