2017-11-19 17:04:24 +02:00
|
|
|
error: #[derive] can't be used on a #[repr(packed)] struct with type parameters (error E0133)
|
2017-11-26 19:01:19 +02:00
|
|
|
--> $DIR/deriving-with-repr-packed.rs:18:16
|
2017-11-19 17:04:24 +02:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #[derive(Copy, Clone, PartialEq, Eq)]
|
2017-11-26 19:01:19 +02:00
|
|
|
| ^^^^^
|
2017-11-19 17:04:24 +02:00
|
|
|
|
|
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/deriving-with-repr-packed.rs:11:9
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #![deny(safe_packed_borrows)]
|
2017-11-19 17:04:24 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #46043 <https://github.com/rust-lang/rust/issues/46043>
|
|
|
|
|
|
|
|
error: #[derive] can't be used on a #[repr(packed)] struct with type parameters (error E0133)
|
2017-11-26 19:01:19 +02:00
|
|
|
--> $DIR/deriving-with-repr-packed.rs:18:23
|
2017-11-19 17:04:24 +02:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #[derive(Copy, Clone, PartialEq, Eq)]
|
2017-11-26 19:01:19 +02:00
|
|
|
| ^^^^^^^^^
|
2017-11-19 17:04:24 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #46043 <https://github.com/rust-lang/rust/issues/46043>
|
|
|
|
|
2018-05-28 17:54:12 -06:00
|
|
|
error: #[derive] can't be used on a #[repr(packed)] struct that does not derive Copy (error E0133)
|
2017-11-26 19:01:19 +02:00
|
|
|
--> $DIR/deriving-with-repr-packed.rs:26:10
|
2017-11-19 17:04:24 +02:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #[derive(PartialEq, Eq)]
|
2017-11-26 19:01:19 +02:00
|
|
|
| ^^^^^^^^^
|
2017-11-19 17:04:24 +02:00
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #46043 <https://github.com/rust-lang/rust/issues/46043>
|
|
|
|
|
2018-05-28 17:54:12 -06:00
|
|
|
error: #[derive] can't be used on a #[repr(packed)] struct that does not derive Copy (error E0133)
|
2017-11-26 19:01:19 +02:00
|
|
|
--> $DIR/deriving-with-repr-packed.rs:35:10
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | #[derive(PartialEq)]
|
2017-11-26 19:01:19 +02:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #46043 <https://github.com/rust-lang/rust/issues/46043>
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2017-11-19 17:04:24 +02:00
|
|
|
|