use std::ops::Deref;
pub trait Foo {
fn baz(_: Self::Target) where Self: Deref {}
//~^ ERROR the size for values of type
}
pub fn f(_: dyn ToString) {}
fn main() { }