summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0642.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0642.fixed')
-rw-r--r--src/test/ui/error-codes/E0642.fixed20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/test/ui/error-codes/E0642.fixed b/src/test/ui/error-codes/E0642.fixed
deleted file mode 100644
index fc6255e02..000000000
--- a/src/test/ui/error-codes/E0642.fixed
+++ /dev/null
@@ -1,20 +0,0 @@
-// 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() {}