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