summary refs log tree commit diff
path: root/src/test/ui/issue-15260.stderr
blob: 10cb79e0fc54722b4a2d885f3a3b61cf489398ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
error[E0025]: field `a` bound multiple times in the pattern
  --> $DIR/issue-15260.rs:18:9
   |
LL |         a: _,
   |         ---- first use of `a`
LL |         a: _
   |         ^^^^ multiple uses of `a` in pattern

error[E0025]: field `a` bound multiple times in the pattern
  --> $DIR/issue-15260.rs:24:9
   |
LL |         a,
   |         - first use of `a`
LL |         a: _
   |         ^^^^ multiple uses of `a` in pattern

error[E0025]: field `a` bound multiple times in the pattern
  --> $DIR/issue-15260.rs:30:9
   |
LL |         a,
   |         - first use of `a`
LL |         a: _,
   |         ^^^^ multiple uses of `a` in pattern

error[E0025]: field `a` bound multiple times in the pattern
  --> $DIR/issue-15260.rs:32:9
   |
LL |         a,
   |         - first use of `a`
...
LL |         a: x
   |         ^^^^ multiple uses of `a` in pattern

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0025`.