|
| 1 | +error: lifetime must precede `mut` |
| 2 | + --> $DIR/issue-73568-lifetime-after-mut.rs:2:13 |
| 3 | + | |
| 4 | +LL | fn x<'a>(x: &mut 'a i32){} |
| 5 | + | ^^^^^^^ help: place the lifetime before `mut`: `&'a mut` |
| 6 | + |
| 7 | +error[E0178]: expected a path on the left-hand side of `+`, not `&mut 'a` |
| 8 | + --> $DIR/issue-73568-lifetime-after-mut.rs:14:13 |
| 9 | + | |
| 10 | +LL | fn y<'a>(y: &mut 'a + Send) { |
| 11 | + | ^^^^^^^^^^^^^^ help: try adding parentheses: `&mut ('a + Send)` |
| 12 | + |
| 13 | +error: lifetime must precede `mut` |
| 14 | + --> $DIR/issue-73568-lifetime-after-mut.rs:6:22 |
| 15 | + | |
| 16 | +LL | fn w<$lt>(w: &mut $lt i32) {} |
| 17 | + | ^^^^^^^^ help: place the lifetime before `mut`: `&$lt mut` |
| 18 | +... |
| 19 | +LL | mac!('a); |
| 20 | + | --------- in this macro invocation |
| 21 | + | |
| 22 | + = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) |
| 23 | + |
| 24 | +error[E0423]: expected value, found trait `Send` |
| 25 | + --> $DIR/issue-73568-lifetime-after-mut.rs:18:28 |
| 26 | + | |
| 27 | +LL | let z = y as &mut 'a + Send; |
| 28 | + | ^^^^ not a value |
| 29 | + |
| 30 | +warning: trait objects without an explicit `dyn` are deprecated |
| 31 | + --> $DIR/issue-73568-lifetime-after-mut.rs:14:18 |
| 32 | + | |
| 33 | +LL | fn y<'a>(y: &mut 'a + Send) { |
| 34 | + | ^^ help: use `dyn`: `dyn 'a` |
| 35 | + | |
| 36 | + = note: `#[warn(bare_trait_objects)]` on by default |
| 37 | + |
| 38 | +warning: trait objects without an explicit `dyn` are deprecated |
| 39 | + --> $DIR/issue-73568-lifetime-after-mut.rs:18:23 |
| 40 | + | |
| 41 | +LL | let z = y as &mut 'a + Send; |
| 42 | + | ^^ help: use `dyn`: `dyn 'a` |
| 43 | + |
| 44 | +error[E0224]: at least one trait is required for an object type |
| 45 | + --> $DIR/issue-73568-lifetime-after-mut.rs:14:18 |
| 46 | + | |
| 47 | +LL | fn y<'a>(y: &mut 'a + Send) { |
| 48 | + | ^^ |
| 49 | + |
| 50 | +error: aborting due to 5 previous errors; 2 warnings emitted |
| 51 | + |
| 52 | +Some errors have detailed explanations: E0178, E0224, E0423. |
| 53 | +For more information about an error, try `rustc --explain E0178`. |
0 commit comments