Rollup merge of #95989 - rust-lang:notriddle/issue-82446, r=compiler-errors

diagnostics: regression test for spurrious "help: store this in the heap"

Closes #82446
This commit is contained in:
Dylan DPC 2022-04-13 05:54:13 +02:00 committed by GitHub
commit 2b4c4dfcfd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,15 @@
// https://github.com/rust-lang/rust/issues/82446
// Spurious 'help: store this in the heap' regression test
trait MyTrait {}
struct Foo {
val: Box<dyn MyTrait>
}
fn make_it(val: &Box<dyn MyTrait>) {
Foo {
val //~ ERROR [E0308]
};
}
fn main() {}

View file

@ -0,0 +1,12 @@
error[E0308]: mismatched types
--> $DIR/issue-82446.rs:11:9
|
LL | val
| ^^^ expected struct `Box`, found reference
|
= note: expected struct `Box<(dyn MyTrait + 'static)>`
found reference `&Box<(dyn MyTrait + 'static)>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.