]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/transmute_undefined_repr.stderr
Rollup merge of #92519 - ChrisDenton:command-maybe-verbatim, r=dtolnay
[rust.git] / src / tools / clippy / tests / ui / transmute_undefined_repr.stderr
1 error: transmute from `Ty2<u32, i32>` which has an undefined layout
2   --> $DIR/transmute_undefined_repr.rs:26:33
3    |
4 LL |         let _: Ty2C<u32, i32> = transmute(value::<Ty2<u32, i32>>()); // Lint, Ty2 is unordered
5    |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::transmute-undefined-repr` implied by `-D warnings`
8
9 error: transmute into `Ty2<u32, i32>` which has an undefined layout
10   --> $DIR/transmute_undefined_repr.rs:27:32
11    |
12 LL |         let _: Ty2<u32, i32> = transmute(value::<Ty2C<u32, i32>>()); // Lint, Ty2 is unordered
13    |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: transmute from `Ty<Ty2<u32, i32>>` to `Ty2<u32, f32>`, both of which have an undefined layout
16   --> $DIR/transmute_undefined_repr.rs:32:32
17    |
18 LL |         let _: Ty2<u32, f32> = transmute(value::<Ty<Ty2<u32, i32>>>()); // Lint, different Ty2 instances
19    |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20    |
21    = note: two instances of the same generic type (`Ty2`) may have different layouts
22
23 error: transmute from `Ty2<u32, f32>` to `Ty<Ty2<u32, i32>>`, both of which have an undefined layout
24   --> $DIR/transmute_undefined_repr.rs:33:36
25    |
26 LL |         let _: Ty<Ty2<u32, i32>> = transmute(value::<Ty2<u32, f32>>()); // Lint, different Ty2 instances
27    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
28    |
29    = note: two instances of the same generic type (`Ty2`) may have different layouts
30
31 error: transmute from `Ty<&Ty2<u32, i32>>` to `&Ty2<u32, f32>`, both of which have an undefined layout
32   --> $DIR/transmute_undefined_repr.rs:38:33
33    |
34 LL |         let _: &Ty2<u32, f32> = transmute(value::<Ty<&Ty2<u32, i32>>>()); // Lint, different Ty2 instances
35    |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
36    |
37    = note: two instances of the same generic type (`Ty2`) may have different layouts
38
39 error: transmute from `&Ty2<u32, f32>` to `Ty<&Ty2<u32, i32>>`, both of which have an undefined layout
40   --> $DIR/transmute_undefined_repr.rs:39:37
41    |
42 LL |         let _: Ty<&Ty2<u32, i32>> = transmute(value::<&Ty2<u32, f32>>()); // Lint, different Ty2 instances
43    |                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44    |
45    = note: two instances of the same generic type (`Ty2`) may have different layouts
46
47 error: transmute from `std::boxed::Box<Ty2<u32, u32>>` to `&mut Ty2<u32, f32>`, both of which have an undefined layout
48   --> $DIR/transmute_undefined_repr.rs:56:45
49    |
50 LL |         let _: &'static mut Ty2<u32, f32> = transmute(value::<Box<Ty2<u32, u32>>>()); // Lint, different Ty2 instances
51    |                                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
52    |
53    = note: two instances of the same generic type (`Ty2`) may have different layouts
54
55 error: transmute from `&mut Ty2<u32, f32>` to `std::boxed::Box<Ty2<u32, u32>>`, both of which have an undefined layout
56   --> $DIR/transmute_undefined_repr.rs:57:37
57    |
58 LL |         let _: Box<Ty2<u32, u32>> = transmute(value::<&'static mut Ty2<u32, f32>>()); // Lint, different Ty2 instances
59    |                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
60    |
61    = note: two instances of the same generic type (`Ty2`) may have different layouts
62
63 error: aborting due to 8 previous errors
64