File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,23 +8,23 @@ pub struct Bar;
88impl Foo for Bar { }
99impl Foo2 for Bar { }
1010
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"
1313pub fn foo < ' x > ( x : & ' x impl Foo ) -> & ' x impl Foo {
1414 x
1515}
1616
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'
1919pub fn foo2 < ' x > ( _x : & ' x impl Foo ) -> impl Foo2 {
2020 Bar
2121}
2222
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'
2424pub fn foo_foo ( ) -> impl Foo + Foo2 {
2525 Bar
2626}
2727
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"
2929pub fn foo_foo_foo < ' x > ( _x : & ' x ( impl Foo + Foo2 ) ) {
3030}
You can’t perform that action at this time.
0 commit comments