summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0642.md
blob: c790aa154bde933247e1fed9d5df1a7809dd3794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Trait methods currently cannot take patterns as arguments.

Erroneous code example:

```compile_fail,E0642
trait Foo {
    fn foo((x, y): (i32, i32)); // error: patterns aren't allowed
                                //        in trait methods
}
```

You can instead use a single name for the argument:

```
trait Foo {
    fn foo(x_and_y: (i32, i32)); // ok!
}
```