]> git.lizzy.rs Git - rust.git/blob - src/test/ui/not-panic/not-panic-safe.stderr
Rollup merge of #87440 - twetzel59:fix-barrier-no-op, r=yaahc
[rust.git] / src / test / ui / not-panic / not-panic-safe.stderr
1 error[E0277]: the type `&mut i32` may not be safely transferred across an unwind boundary
2   --> $DIR/not-panic-safe.rs:9:5
3    |
4 LL |     assert::<&mut i32>();
5    |     ^^^^^^^^^^^^^^^^^^ `&mut i32` may not be safely transferred across an unwind boundary
6    |
7    = help: the trait `UnwindSafe` is not implemented for `&mut i32`
8    = note: `UnwindSafe` is implemented for `&i32`, but not for `&mut i32`
9 note: required by a bound in `assert`
10   --> $DIR/not-panic-safe.rs:6:14
11    |
12 LL | fn assert<T: UnwindSafe + ?Sized>() {}
13    |              ^^^^^^^^^^ required by this bound in `assert`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.