rustdoc: move cross-crate lifetime/outlives bounds on GAT params from where-clause to param declaration site

I've overlooked this in #103190.
This commit is contained in:
León Orell Valerian Liehr 2022-11-02 15:17:34 +01:00
parent 9cdab67f6e
commit 2d9755fa21
3 changed files with 15 additions and 2 deletions

View file

@ -38,3 +38,7 @@ extern crate assoc_item_trait_bounds as aux;
// F: FnOnce(u32) -> String, \
// Self::Out2<()>: Protocol<u8, Q0 = Self::Item, Q1 = ()>"
pub use aux::Main;
// @has main/trait.Aid.html
// @has - '//*[@id="associatedtype.Result"]' "type Result<'inter: 'src>"
pub use aux::Aid;

View file

@ -42,5 +42,5 @@ pub trait Helper {
}
pub trait Aid<'src> {
type Result<'inter>;
type Result<'inter: 'src>;
}