// This test checks that a suggestion to add a `self: ` parameter name is provided // to functions where this is applicable. pub fn foo(Box) { } //~^ ERROR expected one of `:`, `@`, or `|`, found `<` struct Bar; impl Bar { fn bar(Box) { } //~^ ERROR expected one of `:`, `@`, or `|`, found `<` } fn main() { }