X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=tests%2Frustdoc%2Fwhere.SWhere_TraitWhere_item-decl.html;h=e8ab061e679dd09f7f39d99ac6a5d397fa770da6;hb=8307fd7901c9832e7b22ee5139efe6f7f2d291b3;hp=85b626674274cff6f4f4fd53b3c2e7bdcc9f1251;hpb=8ae5116faeedcb325c0cc49d9c0f36ceaeba5616;p=rust.git diff --git a/tests/rustdoc/where.SWhere_TraitWhere_item-decl.html b/tests/rustdoc/where.SWhere_TraitWhere_item-decl.html index 85b62667427..e8ab061e679 100644 --- a/tests/rustdoc/where.SWhere_TraitWhere_item-decl.html +++ b/tests/rustdoc/where.SWhere_TraitWhere_item-decl.html @@ -1,8 +1,13 @@ -
pub trait TraitWhere {
-    type Item<'a>
    where
        Self: 'a
; +
pub trait TraitWhere {
+    type Item<'a>
+       where Self: 'a;
 
-    fn func(self)
    where
        Self: Sized
, - { ... } - fn lines(self) -> Lines<Self>
    where
        Self: Sized
, - { ... } -}
\ No newline at end of file + // Provided methods + fn func(self) + where Self: Sized { ... } + fn lines(self) -> Lines<Self> + where Self: Sized { ... } + fn merge<T>(self, a: T) + where Self: Sized, + T: Sized { ... } +} \ No newline at end of file