You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the return type is `!Sized` we look for all the returned
expressions in the body to fetch their types and provide a reasonable
suggestion. The tail expression of the body is normally evaluated after
checking whether the return type is `Sized`. Changing the order of the
evaluation produces undesirable knock down effects, so we detect the
specific case that newcomers are likely to encounter ,returning a single
bare trait object, and only in that case we evaluate the tail
expression's type so that the suggestion will be accurate.
Copy file name to clipboardexpand all lines: src/test/ui/impl-trait/dyn-trait-return-should-be-impl-trait.stderr
+16-7
Original file line number
Diff line number
Diff line change
@@ -72,18 +72,15 @@ error[E0746]: return type cannot have an unboxed trait object
72
72
LL | fn bak() -> dyn Trait { unimplemented!() }
73
73
| ^^^^^^^^^ doesn't have a size known at compile-time
74
74
|
75
-
= note: currently nothing is being returned, depending on the final implementation you could change the return type in different ways
76
-
= note: for information on `impl Trait`, see <https://doc.rust-lang.org/book/ch10-02-traits.html#returning-types-that-implement-traits>
77
-
= note: for information on trait objects, see <https://doc.rust-lang.org/book/ch17-02-trait-objects.html#using-trait-objects-that-allow-for-values-of-different-types>
78
-
help: you could use some type `T` that is `T: Sized` as the return type if all return paths will have the same type
75
+
help: use some type `T` that is `T: Sized` as the return type if all return paths have the same type
79
76
|
80
77
LL | fn bak() -> T { unimplemented!() }
81
78
| ^
82
-
help: you could use `impl Trait` as the return type if all return paths will have the same type but you want to expose only the trait in the signature
79
+
help: use `impl Trait` as the return type if all return paths have the same type but you want to expose only the trait in the signature
83
80
|
84
81
LL | fn bak() -> impl Trait { unimplemented!() }
85
82
| ^^^^^^^^^^
86
-
help: you could use a boxed trait object if all return paths `impl` trait `Trait`
83
+
help: use a boxed trait object if all return paths implement trait `Trait`
Copy file name to clipboardexpand all lines: src/test/ui/issues/issue-18107.stderr
+3-6
Original file line number
Diff line number
Diff line change
@@ -4,18 +4,15 @@ error[E0746]: return type cannot have an unboxed trait object
4
4
LL | dyn AbstractRenderer
5
5
| ^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
6
6
|
7
-
= note: currently nothing is being returned, depending on the final implementation you could change the return type in different ways
8
-
= note: for information on `impl Trait`, see <https://doc.rust-lang.org/book/ch10-02-traits.html#returning-types-that-implement-traits>
9
-
= note: for information on trait objects, see <https://doc.rust-lang.org/book/ch17-02-trait-objects.html#using-trait-objects-that-allow-for-values-of-different-types>
10
-
help: you could use some type `T` that is `T: Sized` as the return type if all return paths will have the same type
7
+
help: use some type `T` that is `T: Sized` as the return type if all return paths have the same type
11
8
|
12
9
LL | T
13
10
|
14
-
help: you could use `impl AbstractRenderer` as the return type if all return paths will have the same type but you want to expose only the trait in the signature
11
+
help: use `impl AbstractRenderer` as the return type if all return paths have the same type but you want to expose only the trait in the signature
15
12
|
16
13
LL | impl AbstractRenderer
17
14
|
18
-
help: you could use a boxed trait object if all return paths `impl` trait `AbstractRenderer`
15
+
help: use a boxed trait object if all return paths implement trait `AbstractRenderer`
0 commit comments