blob: aeccd0d9f76cafa177f4bf316a55e4fc095fc9a4 [file] [log] [blame]
struct S {}
impl S {
fn foo(&mur Self) {}
//~^ ERROR expected identifier, found keyword `Self`
//~| ERROR expected one of `:`, `@`
//~| ERROR the `Self` constructor can only be used with
fn bar(&'static mur Self) {}
//~^ ERROR unexpected lifetime
//~| ERROR expected identifier, found keyword `Self`
//~| ERROR expected one of `:`, `@`
//~| ERROR the `Self` constructor can only be used with
fn baz(&mur Self @ _) {}
//~^ ERROR expected one of `:`, `@`
}
fn main() {}