Update test to include self case

This commit is contained in:
Rune Tynan 2022-01-21 13:19:18 -05:00
parent f4b42946c8
commit 66d056a9bf

View File

@ -4,10 +4,12 @@
// @has blanket_with_local.json "$.index[*][?(@.name=='Load')]"
pub trait Load {
fn load() {}
fn write(self) {}
}
impl<P> Load for P {
fn load() {}
fn write(self) {}
}
// @has - "$.index[*][?(@.name=='Wrapper')]"