mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
269 B
Rust
16 lines
269 B
Rust
// 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() {}
|