blob: 1b7e0684254a3e76cea3cba4185d884d123d8468 [file] [log] [blame] [edit]
//@ run-rustfix
#![allow(unused)] // for rustfix
#[derive(Clone, Copy)]
struct S;
trait T {
fn foo(_: (i32, i32)); //~ ERROR patterns aren't allowed in methods without bodies
fn bar(_: (i32, i32)) {} //~ ERROR patterns aren't allowed in methods without bodies
fn method(_: S) {} //~ ERROR patterns aren't allowed in methods without bodies
fn f(&ident: &S) {} // ok
fn g(&&ident: &&S) {} // ok
fn h(mut ident: S) {} // ok
}
fn main() {}