You should be able to write: ``` trait Foo: Sized { ... } ``` and then have a parameter like ``` fn foo<T:Foo>(...) ``` where this also implies that `T` is `Sized`. Related to #5527