File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,23 +8,23 @@ pub struct Bar;
8
8
impl Foo for Bar { }
9
9
impl Foo2 for Bar { }
10
10
11
- // @! has foo/fn.foo.html '//section[@id="main"]//pre' "x: &\ 'x impl Foo"
12
- // @! has foo/fn.foo.html '//section[@id="main"]//pre' "-> &\ 'x impl Foo { "
11
+ // @has foo/fn.foo.html '//section[@id="main"]//pre' "x: &'x impl Foo"
12
+ // @has foo/fn.foo.html '//section[@id="main"]//pre' "-> &'x impl Foo"
13
13
pub fn foo < ' x > ( x : & ' x impl Foo ) -> & ' x impl Foo {
14
14
x
15
15
}
16
16
17
- // @! has foo/fn.foo2.html '//section[@id="main"]//pre' "x: &\ 'x impl Foo"
18
- // @! has foo/fn.foo2.html '//section[@id="main"]//pre' '-> impl Foo2 { '
17
+ // @has foo/fn.foo2.html '//section[@id="main"]//pre' "x: &'x impl Foo"
18
+ // @has foo/fn.foo2.html '//section[@id="main"]//pre' '-> impl Foo2'
19
19
pub fn foo2 < ' x > ( _x : & ' x impl Foo ) -> impl Foo2 {
20
20
Bar
21
21
}
22
22
23
- // @! has foo/fn.foo_foo.html '//section[@id="main"]//pre' '-> impl Foo + Foo2 { '
23
+ // @has foo/fn.foo_foo.html '//section[@id="main"]//pre' '-> impl Foo + Foo2'
24
24
pub fn foo_foo ( ) -> impl Foo + Foo2 {
25
25
Bar
26
26
}
27
27
28
- // @! has foo/fn.foo2 .html '//section[@id="main"]//pre' "x: &'x ( impl Foo + Foo2) "
28
+ // @has foo/fn.foo_foo_foo .html '//section[@id="main"]//pre' "x: &'x impl Foo + Foo2"
29
29
pub fn foo_foo_foo < ' x > ( _x : & ' x ( impl Foo + Foo2 ) ) {
30
30
}
You can’t perform that action at this time.
0 commit comments