2017-03-28 07:10:16 -05:00
|
|
|
error[E0178]: expected a path on the left-hand side of `+`, not `&'a Foo`
|
|
|
|
--> $DIR/E0178.rs:14:8
|
|
|
|
|
|
|
|
|
14 | w: &'a Foo + Copy,
|
2017-04-25 06:35:04 -05:00
|
|
|
| ^^^^^^^^^^^^^^ help: try adding parentheses: `&'a (Foo + Copy)`
|
2017-03-28 07:10:16 -05:00
|
|
|
|
|
|
|
error[E0178]: expected a path on the left-hand side of `+`, not `&'a Foo`
|
|
|
|
--> $DIR/E0178.rs:15:8
|
|
|
|
|
|
|
|
|
15 | x: &'a Foo + 'a,
|
2017-04-25 06:35:04 -05:00
|
|
|
| ^^^^^^^^^^^^ help: try adding parentheses: `&'a (Foo + 'a)`
|
2017-03-28 07:10:16 -05:00
|
|
|
|
|
|
|
error[E0178]: expected a path on the left-hand side of `+`, not `&'a mut Foo`
|
|
|
|
--> $DIR/E0178.rs:16:8
|
|
|
|
|
|
|
|
|
16 | y: &'a mut Foo + 'a,
|
2017-04-25 06:35:04 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^ help: try adding parentheses: `&'a mut (Foo + 'a)`
|
2017-03-28 07:10:16 -05:00
|
|
|
|
|
|
|
error[E0178]: expected a path on the left-hand side of `+`, not `fn() -> Foo`
|
|
|
|
--> $DIR/E0178.rs:17:8
|
|
|
|
|
|
|
|
|
17 | z: fn() -> Foo + 'a,
|
|
|
|
| ^^^^^^^^^^^^^^^^ perhaps you forgot parentheses?
|
|
|
|
|
2017-05-22 06:46:05 -05:00
|
|
|
error: aborting due to previous error(s)
|
2017-03-28 07:10:16 -05:00
|
|
|
|