• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0308]: mismatched types
2  --> $DIR/issue-82446.rs:11:9
3   |
4LL |         val
5   |         ^^^ expected `Box<dyn MyTrait>`, found `&Box<dyn MyTrait>`
6   |
7   = note: expected struct `Box<(dyn MyTrait + 'static)>`
8           found reference `&Box<(dyn MyTrait + 'static)>`
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0308`.
13