2022-02-01 19:53:12 +00:00
|
|
|
error: transmute from `Ty2<u32, i32>` which has an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:28:33
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: Ty2C<u32, i32> = transmute(value::<Ty2<u32, i32>>()); // Lint, Ty2 is unordered
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::transmute-undefined-repr` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: transmute into `Ty2<u32, i32>` which has an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:29:32
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: Ty2<u32, i32> = transmute(value::<Ty2C<u32, i32>>()); // Lint, Ty2 is unordered
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
|
|
error: transmute from `Ty<Ty2<u32, i32>>` to `Ty2<u32, f32>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:34:32
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: Ty2<u32, f32> = transmute(value::<Ty<Ty2<u32, i32>>>()); // Lint, different Ty2 instances
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Ty2`) may have different layouts
|
|
|
|
|
|
|
|
error: transmute from `Ty2<u32, f32>` to `Ty<Ty2<u32, i32>>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:35:36
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: Ty<Ty2<u32, i32>> = transmute(value::<Ty2<u32, f32>>()); // Lint, different Ty2 instances
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Ty2`) may have different layouts
|
|
|
|
|
2022-02-15 16:29:02 +00:00
|
|
|
error: transmute from `Ty<&Ty2<u32, i32>>` to `&Ty2<u32, f32>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:40:33
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: &Ty2<u32, f32> = transmute(value::<Ty<&Ty2<u32, i32>>>()); // Lint, different Ty2 instances
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-15 16:29:02 +00:00
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Ty2`) may have different layouts
|
2022-02-01 19:53:12 +00:00
|
|
|
|
2022-02-15 16:29:02 +00:00
|
|
|
error: transmute from `&Ty2<u32, f32>` to `Ty<&Ty2<u32, i32>>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:41:37
|
2022-02-01 19:53:12 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: Ty<&Ty2<u32, i32>> = transmute(value::<&Ty2<u32, f32>>()); // Lint, different Ty2 instances
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-15 16:29:02 +00:00
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Ty2`) may have different layouts
|
|
|
|
|
|
|
|
error: transmute from `std::boxed::Box<Ty2<u32, u32>>` to `&mut Ty2<u32, f32>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:58:45
|
2022-02-15 16:29:02 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: &'static mut Ty2<u32, f32> = transmute(value::<Box<Ty2<u32, u32>>>()); // Lint, different Ty2 instances
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-15 16:29:02 +00:00
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Ty2`) may have different layouts
|
|
|
|
|
|
|
|
error: transmute from `&mut Ty2<u32, f32>` to `std::boxed::Box<Ty2<u32, u32>>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:59:37
|
2022-02-15 16:29:02 +00:00
|
|
|
|
|
2022-02-15 19:51:57 +00:00
|
|
|
LL | let _: Box<Ty2<u32, u32>> = transmute(value::<&'static mut Ty2<u32, f32>>()); // Lint, different Ty2 instances
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2022-02-15 16:29:02 +00:00
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Ty2`) may have different layouts
|
2022-02-01 19:53:12 +00:00
|
|
|
|
2022-08-03 17:16:04 +00:00
|
|
|
error: transmute into `*const Ty2<u32, u32>` which has an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:119:39
|
2022-08-03 17:16:04 +00:00
|
|
|
|
|
|
|
|
LL | let _: *const Ty2<u32, u32> = transmute(value::<*const Ty2C<u32, Ty2<u32, u32>>>()); // Err
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: the contained type `Ty2<u32, u32>` has an undefined layout
|
|
|
|
|
|
|
|
error: transmute from `*const Ty2<u32, u32>` which has an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:120:50
|
2022-08-03 17:16:04 +00:00
|
|
|
|
|
|
|
|
LL | let _: *const Ty2C<u32, Ty2<u32, u32>> = transmute(value::<*const Ty2<u32, u32>>()); // Err
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: the contained type `Ty2<u32, u32>` has an undefined layout
|
|
|
|
|
2022-03-16 16:54:32 +00:00
|
|
|
error: transmute from `std::vec::Vec<Ty2<U, i32>>` to `std::vec::Vec<Ty2<T, u32>>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:150:35
|
2022-03-16 16:54:32 +00:00
|
|
|
|
|
|
|
|
LL | let _: Vec<Ty2<T, u32>> = transmute(value::<Vec<Ty2<U, i32>>>()); // Err
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Vec`) may have different layouts
|
|
|
|
|
|
|
|
error: transmute from `std::vec::Vec<Ty2<T, u32>>` to `std::vec::Vec<Ty2<U, i32>>`, both of which have an undefined layout
|
2022-08-07 21:47:24 +00:00
|
|
|
--> $DIR/transmute_undefined_repr.rs:151:35
|
2022-03-16 16:54:32 +00:00
|
|
|
|
|
|
|
|
LL | let _: Vec<Ty2<U, i32>> = transmute(value::<Vec<Ty2<T, u32>>>()); // Err
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: two instances of the same generic type (`Vec`) may have different layouts
|
|
|
|
|
2022-08-03 17:16:04 +00:00
|
|
|
error: aborting due to 12 previous errors
|
2022-02-01 19:53:12 +00:00
|
|
|
|