impl Trait
MachineApplicable
When a type error involves a `dyn Trait` as the return type, do not emit the type error, as the "return type is not `Sized`" error will provide enough information to the user.
dyn Trait
Suggest `impl Trait` when possible, and `Box<dyn Trait>` otherwise.