about summary refs log tree commit diff
path: root/tests/ui/did_you_mean/E0178.stderr
blob: 7b69f860381ea395320dc7135a4d9b3a20633df1 (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
37
38
39
40
41
42
43
44
error[E0178]: expected a path on the left-hand side of `+`
  --> $DIR/E0178.rs:7:8
   |
LL |     w: &'a Foo + Copy,
   |        ^^^^^^^
   |
help: try adding parentheses
   |
LL |     w: &'a (Foo + Copy),
   |            +          +

error[E0178]: expected a path on the left-hand side of `+`
  --> $DIR/E0178.rs:8:8
   |
LL |     x: &'a Foo + 'a,
   |        ^^^^^^^
   |
help: try adding parentheses
   |
LL |     x: &'a (Foo + 'a),
   |            +        +

error[E0178]: expected a path on the left-hand side of `+`
  --> $DIR/E0178.rs:9:8
   |
LL |     y: &'a mut Foo + 'a,
   |        ^^^^^^^^^^^
   |
help: try adding parentheses
   |
LL |     y: &'a mut (Foo + 'a),
   |                +        +

error[E0178]: expected a path on the left-hand side of `+`
  --> $DIR/E0178.rs:10:8
   |
LL |     z: fn() -> Foo + 'a,
   |        ^^^^^^^^^^^-----
   |        |
   |        perhaps you forgot parentheses?

error: aborting due to 4 previous errors

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