// run-rustfix #![allow(dead_code, unused_variables)] trait Get { type Value: ?Sized; fn get(&self) -> ::Value; } fn foo(t: T) where ::Value: Sized { let x = t.get(); //~ ERROR the size for values of type } fn main() { }