You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We remove `simd-nightly` impls for the `arm` target `[u]int8x4_t` types,
which are now just type aliases for `u32` and `i32`.
We also switch from using `wasm32-wasi` to `wasm32-unknown-unknown` in
CI, as the former is less supported (and not available via `rustup` on
this particular nightly).
gherrit-pr-id: I0a19a7789334f41ffedc55b871df9736d4b51484
Copy file name to clipboardExpand all lines: tests/ui-nightly/invalid-impls/invalid-impls.stderr
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ note: required by a bound in `_::Subtrait`
21
21
26 | impl_or_verify!(T => TryFromBytes for Foo<T>);
22
22
| --------------------------------------------- in this macro invocation
23
23
= note: this error originates in the derive macro `FromBytes` which comes from the expansion of the macro `impl_or_verify` (in Nightly builds, run with -Z macro-backtrace for more info)
24
-
help: consider restricting type parameter `T`
24
+
help: consider restricting type parameter `T` with trait `TryFromBytes`
25
25
|
26
26
26 | impl_or_verify!(T: zerocopy::TryFromBytes => TryFromBytes for Foo<T>);
27
27
| ++++++++++++++++++++++++
@@ -49,7 +49,7 @@ note: required by a bound in `_::Subtrait`
49
49
27 | impl_or_verify!(T => FromZeros for Foo<T>);
50
50
| ------------------------------------------ in this macro invocation
51
51
= note: this error originates in the derive macro `FromBytes` which comes from the expansion of the macro `impl_or_verify` (in Nightly builds, run with -Z macro-backtrace for more info)
52
-
help: consider restricting type parameter `T`
52
+
help: consider restricting type parameter `T` with trait `FromZeros`
53
53
|
54
54
27 | impl_or_verify!(T: zerocopy::FromZeros => FromZeros for Foo<T>);
55
55
| +++++++++++++++++++++
@@ -77,7 +77,7 @@ note: required by a bound in `_::Subtrait`
77
77
28 | impl_or_verify!(T => FromBytes for Foo<T>);
78
78
| ------------------------------------------ in this macro invocation
79
79
= note: this error originates in the derive macro `FromBytes` which comes from the expansion of the macro `impl_or_verify` (in Nightly builds, run with -Z macro-backtrace for more info)
80
-
help: consider restricting type parameter `T`
80
+
help: consider restricting type parameter `T` with trait `FromBytes`
81
81
|
82
82
28 | impl_or_verify!(T: zerocopy::FromBytes => FromBytes for Foo<T>);
83
83
| +++++++++++++++++++++
@@ -105,7 +105,7 @@ note: required by a bound in `_::Subtrait`
105
105
29 | impl_or_verify!(T => IntoBytes for Foo<T>);
106
106
| ------------------------------------------ in this macro invocation
107
107
= note: this error originates in the derive macro `IntoBytes` which comes from the expansion of the macro `impl_or_verify` (in Nightly builds, run with -Z macro-backtrace for more info)
108
-
help: consider restricting type parameter `T`
108
+
help: consider restricting type parameter `T` with trait `IntoBytes`
109
109
|
110
110
29 | impl_or_verify!(T: zerocopy::IntoBytes => IntoBytes for Foo<T>);
111
111
| +++++++++++++++++++++
@@ -133,7 +133,7 @@ note: required by a bound in `_::Subtrait`
133
133
30 | impl_or_verify!(T => Unaligned for Foo<T>);
134
134
| ------------------------------------------ in this macro invocation
135
135
= note: this error originates in the derive macro `Unaligned` which comes from the expansion of the macro `impl_or_verify` (in Nightly builds, run with -Z macro-backtrace for more info)
136
-
help: consider restricting type parameter `T`
136
+
help: consider restricting type parameter `T` with trait `Unaligned`
137
137
|
138
138
30 | impl_or_verify!(T: zerocopy::Unaligned => Unaligned for Foo<T>);
| ^^^ required by the implicit `Sized` requirement on this type parameter in `transmute`
55
55
= note: this error originates in the macro `$crate::assert_size_eq` which comes from the expansion of the macro `transmute_mut` (in Nightly builds, run with -Z macro-backtrace for more info)
0 commit comments