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, 20 insertions, 0 deletions
diff --git a/src/test/ui/error-codes/E0642.fixed b/src/test/ui/error-codes/E0642.fixed
new file mode 100644
index 000000000..fc6255e02
--- /dev/null
+++ b/src/test/ui/error-codes/E0642.fixed
@@ -0,0 +1,20 @@
+// 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() {}