Add has tests for blanket_with_local trait methods

This commit is contained in:
Rune Tynan 2022-01-22 19:55:25 -05:00
parent 66d056a9bf
commit 92206318bc

View File

@ -3,7 +3,9 @@
// @has blanket_with_local.json "$.index[*][?(@.name=='Load')]"
pub trait Load {
// @has - "$.index[*][?(@.name=='load')]"
fn load() {}
// @has - "$.index[*][?(@.name=='write')]"
fn write(self) {}
}