rustc/tests/ui/error-codes/E0642.fixed
2024-06-21 09:39:33 +02:00

21 lines
467 B
Plaintext

//@ 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() {}