File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ impl B { pub fn foo_b(&self) {} }
9
9
pub struct C { }
10
10
impl C { pub fn foo_c ( & self ) { } }
11
11
12
- // @has issue_85037 /struct.A.html '//div[@class="sidebar-links"]' 'foo_b'
12
+ // @has recursive_deref_sidebar /struct.A.html '//div[@class="sidebar-links"]' 'foo_b'
13
13
impl Deref for A {
14
14
type Target = B ;
15
15
fn deref ( & self ) -> & B { todo ! ( ) }
16
16
}
17
17
18
- // @!has issue_85037 /struct.A.html '//div[@class="sidebar-links"]' 'foo_c'
18
+ // @!has recursive_deref_sidebar /struct.A.html '//div[@class="sidebar-links"]' 'foo_c'
19
19
impl Deref for B {
20
20
type Target = C ;
21
21
fn deref ( & self ) -> & C { todo ! ( ) }
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use std::ops::Deref;
3
3
pub struct A ;
4
4
pub struct B ;
5
5
6
- // @has issue_85095 /struct.A.html '//code' 'impl Deref for A'
6
+ // @has recursive_deref /struct.A.html '//code' 'impl Deref for A'
7
7
impl Deref for A {
8
8
type Target = B ;
9
9
@@ -12,7 +12,7 @@ impl Deref for A {
12
12
}
13
13
}
14
14
15
- // @has issue_85095 /struct.B.html '//code' 'impl Deref for B'
15
+ // @has recursive_deref /struct.B.html '//code' 'impl Deref for B'
16
16
impl Deref for B {
17
17
type Target = A ;
18
18
You can’t perform that action at this time.
0 commit comments