• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0277]: the trait bound `UnsafeCell<u32>: FromBytes` is not satisfied
2  --> tests/ui-msrv/include_value_not_from_bytes.rs:12:5
3   |
412 |     include_value!("../../testdata/include_value/data");
5   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `FromBytes` is not implemented for `UnsafeCell<u32>`
6   |
7note: required by a bound in `AssertIsFromBytes`
8  --> tests/ui-msrv/include_value_not_from_bytes.rs:12:5
9   |
1012 |     include_value!("../../testdata/include_value/data");
11   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `AssertIsFromBytes`
12   = note: this error originates in the macro `$crate::transmute` (in Nightly builds, run with -Z macro-backtrace for more info)
13