Skip to content

Commit 66d056a

Browse files
committed
Update test to include self case
1 parent f4b4294 commit 66d056a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/test/rustdoc-json/impls/blanket_with_local.rs

+2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
// @has blanket_with_local.json "$.index[*][?(@.name=='Load')]"
55
pub trait Load {
66
fn load() {}
7+
fn write(self) {}
78
}
89

910
impl<P> Load for P {
1011
fn load() {}
12+
fn write(self) {}
1113
}
1214

1315
// @has - "$.index[*][?(@.name=='Wrapper')]"

0 commit comments

Comments
 (0)