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