For example: ``` rust // foo.rs pub fn f<T: ?Sized>(_: &T) { } ``` ``` rust // bar.rs extern crate foo; pub use foo::f; ``` The docs for `bar::f` will be missing the `?Sized` bound on T.