forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#120315 - estebank:issue-102629-2, r=wesleywiser On E0308 involving `dyn Trait`, mention trait objects When encountering a type mismatch error involving `dyn Trait`, mention the existence of boxed trait objects if the other type involved implements `Trait`. Fix rust-lang#102629.
- Loading branch information
Showing
9 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
trait Trait {} | ||
struct Struct; | ||
impl Trait for Struct {} | ||
fn foo() -> impl Trait { | ||
Struct | ||
} | ||
fn main() { | ||
let a: Box<dyn Trait> = if true { | ||
Box::new(Struct) | ||
} else { | ||
foo() //~ ERROR E0308 | ||
}; | ||
let a: dyn Trait = if true { | ||
Struct //~ ERROR E0308 | ||
} else { | ||
foo() //~ ERROR E0308 | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
error[E0308]: mismatched types | ||
--> $DIR/dyn-impl-type-mismatch.rs:11:9 | ||
| | ||
LL | fn foo() -> impl Trait { | ||
| ---------- the found opaque type | ||
... | ||
LL | foo() | ||
| ^^^^^ expected `Box<dyn Trait>`, found opaque type | ||
| | ||
= note: expected struct `Box<dyn Trait>` | ||
found opaque type `impl Trait` | ||
= note: for more on the distinction between the stack and the heap, read https://doc.rust-lang.org/book/ch15-01-box.html, https://doc.rust-lang.org/rust-by-example/std/box.html, and https://doc.rust-lang.org/std/boxed/index.html | ||
help: store this in the heap by calling `Box::new` | ||
| | ||
LL | Box::new(foo()) | ||
| +++++++++ + | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/dyn-impl-type-mismatch.rs:14:9 | ||
| | ||
LL | Struct | ||
| ^^^^^^ expected `dyn Trait`, found `Struct` | ||
| | ||
= note: expected trait object `dyn Trait` | ||
found struct `Struct` | ||
= help: `Struct` implements `Trait` so you could box the found value and coerce it to the trait object `Box<dyn Trait>`, you will have to change the expected type as well | ||
|
||
error[E0308]: mismatched types | ||
--> $DIR/dyn-impl-type-mismatch.rs:16:9 | ||
| | ||
LL | fn foo() -> impl Trait { | ||
| ---------- the found opaque type | ||
... | ||
LL | foo() | ||
| ^^^^^ expected `dyn Trait`, found opaque type | ||
| | ||
= note: expected trait object `dyn Trait` | ||
found opaque type `impl Trait` | ||
= help: you can box the `impl Trait` to coerce it to `Box<dyn Trait>`, but you'll have to change the expected type as well | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0308`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters