rust-clippy/tests/ui/transmute.stderr

247 lines
10 KiB
Text
Raw Normal View History

2017-08-01 15:54:21 +00:00
error: transmute from a type (`&'a T`) to itself
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:28:20
|
2018-12-10 05:27:19 +00:00
28 | let _: &'a T = core::intrinsics::transmute(t);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::useless-transmute` implied by `-D warnings`
2017-08-01 15:54:21 +00:00
error: transmute from a reference to a pointer
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:32:23
|
2018-12-10 05:27:19 +00:00
32 | let _: *const T = core::intrinsics::transmute(t);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `t as *const T`
2017-08-01 15:54:21 +00:00
error: transmute from a reference to a pointer
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:34:21
|
2018-12-10 05:27:19 +00:00
34 | let _: *mut T = core::intrinsics::transmute(t);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `t as *const T as *mut T`
2017-08-01 15:54:21 +00:00
error: transmute from a reference to a pointer
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:36:23
|
2018-12-10 05:27:19 +00:00
36 | let _: *const U = core::intrinsics::transmute(t);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `t as *const T as *const U`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*const T`) to a reference type (`&T`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:41:17
|
2018-12-10 05:27:19 +00:00
41 | let _: &T = std::mem::transmute(p);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*p`
|
= note: `-D clippy::transmute-ptr-to-ref` implied by `-D warnings`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*mut T`) to a reference type (`&mut T`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:44:21
|
2018-12-10 05:27:19 +00:00
44 | let _: &mut T = std::mem::transmute(m);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `&mut *m`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*mut T`) to a reference type (`&T`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:47:17
|
2018-12-10 05:27:19 +00:00
47 | let _: &T = std::mem::transmute(m);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*m`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*mut T`) to a reference type (`&mut T`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:50:21
|
2018-12-10 05:27:19 +00:00
50 | let _: &mut T = std::mem::transmute(p as *mut T);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&mut *(p as *mut T)`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*const U`) to a reference type (`&T`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:53:17
|
2018-12-10 05:27:19 +00:00
53 | let _: &T = std::mem::transmute(o);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(o as *const T)`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*mut U`) to a reference type (`&mut T`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:56:21
|
2018-12-10 05:27:19 +00:00
56 | let _: &mut T = std::mem::transmute(om);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&mut *(om as *mut T)`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*mut U`) to a reference type (`&T`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:59:17
|
2018-12-10 05:27:19 +00:00
59 | let _: &T = std::mem::transmute(om);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(om as *const T)`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*const i32`) to a reference type (`&issue1231::Foo<'_, u8>`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:70:32
|
2018-12-10 05:27:19 +00:00
70 | let _: &Foo<u8> = unsafe { std::mem::transmute::<_, &Foo<_>>(raw) };
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(raw as *const Foo<_>)`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*const i32`) to a reference type (`&issue1231::Foo<'_, &u8>`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:72:33
|
2018-12-10 05:27:19 +00:00
72 | let _: &Foo<&u8> = unsafe { std::mem::transmute::<_, &Foo<&_>>(raw) };
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(raw as *const Foo<&_>)`
2017-08-01 15:54:21 +00:00
error: transmute from a pointer type (`*const i32`) to a reference type (`&u8`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:76:14
|
2018-12-10 05:27:19 +00:00
76 | unsafe { std::mem::transmute::<_, Bar>(raw) };
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(raw as *const u8)`
2017-08-01 15:54:21 +00:00
error: transmute from a type (`std::vec::Vec<i32>`) to itself
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:82:27
|
2018-12-10 05:27:19 +00:00
82 | let _: Vec<i32> = core::intrinsics::transmute(my_vec());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
error: transmute from a type (`std::vec::Vec<i32>`) to itself
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:84:27
|
2018-12-10 05:27:19 +00:00
84 | let _: Vec<i32> = core::mem::transmute(my_vec());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
error: transmute from a type (`std::vec::Vec<i32>`) to itself
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:86:27
|
2018-12-10 05:27:19 +00:00
86 | let _: Vec<i32> = std::intrinsics::transmute(my_vec());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
error: transmute from a type (`std::vec::Vec<i32>`) to itself
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:88:27
|
2018-12-10 05:27:19 +00:00
88 | let _: Vec<i32> = std::mem::transmute(my_vec());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
error: transmute from a type (`std::vec::Vec<i32>`) to itself
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:90:27
|
2018-12-10 05:27:19 +00:00
90 | let _: Vec<i32> = my_transmute(my_vec());
| ^^^^^^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
error: transmute from an integer to a pointer
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:98:31
|
98 | let _: *const usize = std::mem::transmute(5_isize);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `5_isize as *const usize`
2017-08-01 15:54:21 +00:00
error: transmute from an integer to a pointer
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:102:31
2018-10-06 16:18:06 +00:00
|
2018-12-10 05:27:19 +00:00
102 | let _: *const usize = std::mem::transmute(1 + 1usize);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(1 + 1usize) as *const usize`
2017-08-01 15:54:21 +00:00
error: transmute from a type (`*const Usize`) to the type that it points to (`Usize`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:117:24
|
2018-12-10 05:27:19 +00:00
117 | let _: Usize = core::intrinsics::transmute(int_const_ptr);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::crosspointer-transmute` implied by `-D warnings`
2017-08-01 15:54:21 +00:00
error: transmute from a type (`*mut Usize`) to the type that it points to (`Usize`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:119:24
|
2018-12-10 05:27:19 +00:00
119 | let _: Usize = core::intrinsics::transmute(int_mut_ptr);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
error: transmute from a type (`Usize`) to a pointer to that type (`*const Usize`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:121:31
|
2018-12-10 05:27:19 +00:00
121 | let _: *const Usize = core::intrinsics::transmute(my_int());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-08-01 15:54:21 +00:00
error: transmute from a type (`Usize`) to a pointer to that type (`*mut Usize`)
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:123:29
|
2018-12-10 05:27:19 +00:00
123 | let _: *mut Usize = core::intrinsics::transmute(my_int());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-02 15:23:24 +00:00
error: transmute from a `u32` to a `char`
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:129:28
2017-10-02 15:23:24 +00:00
|
2018-12-10 05:27:19 +00:00
129 | let _: char = unsafe { std::mem::transmute(0_u32) };
2017-10-29 01:27:45 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::char::from_u32(0_u32).unwrap()`
2017-10-02 15:23:24 +00:00
|
= note: `-D clippy::transmute-int-to-char` implied by `-D warnings`
2017-10-02 15:23:24 +00:00
error: transmute from a `i32` to a `char`
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:130:28
2017-10-02 15:23:24 +00:00
|
2018-12-10 05:27:19 +00:00
130 | let _: char = unsafe { std::mem::transmute(0_i32) };
2017-10-29 01:27:45 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::char::from_u32(0_i32 as u32).unwrap()`
2017-10-02 15:23:24 +00:00
error: transmute from a `u8` to a `bool`
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:135:28
2017-10-02 15:23:24 +00:00
|
2018-12-10 05:27:19 +00:00
135 | let _: bool = unsafe { std::mem::transmute(0_u8) };
2017-10-02 15:23:24 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `0_u8 != 0`
|
= note: `-D clippy::transmute-int-to-bool` implied by `-D warnings`
2017-10-02 15:23:24 +00:00
error: transmute from a `u32` to a `f32`
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:140:27
2017-10-02 15:23:24 +00:00
|
2018-12-10 05:27:19 +00:00
140 | let _: f32 = unsafe { std::mem::transmute(0_u32) };
2017-10-02 15:23:24 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `f32::from_bits(0_u32)`
|
= note: `-D clippy::transmute-int-to-float` implied by `-D warnings`
2017-10-02 15:23:24 +00:00
error: transmute from a `i32` to a `f32`
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:141:27
2017-10-02 15:23:24 +00:00
|
2018-12-10 05:27:19 +00:00
141 | let _: f32 = unsafe { std::mem::transmute(0_i32) };
2017-10-02 15:23:24 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `f32::from_bits(0_i32 as u32)`
2017-10-29 01:27:45 +00:00
error: transmute from a `&[u8]` to a `&str`
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:145:28
2017-10-29 01:27:45 +00:00
|
2018-12-10 05:27:19 +00:00
145 | let _: &str = unsafe { std::mem::transmute(b) };
2017-10-29 01:27:45 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::str::from_utf8(b).unwrap()`
|
= note: `-D clippy::transmute-bytes-to-str` implied by `-D warnings`
2017-10-29 01:27:45 +00:00
error: transmute from a `&mut [u8]` to a `&mut str`
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:146:32
2017-10-29 01:27:45 +00:00
|
2018-12-10 05:27:19 +00:00
146 | let _: &mut str = unsafe { std::mem::transmute(mb) };
2017-10-29 01:27:45 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::str::from_utf8_mut(mb).unwrap()`
error: transmute from a pointer to a pointer
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:178:29
|
2018-12-10 05:27:19 +00:00
178 | let _: *const f32 = std::mem::transmute(ptr);
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `ptr as *const f32`
|
= note: `-D clippy::transmute-ptr-to-ptr` implied by `-D warnings`
error: transmute from a pointer to a pointer
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:179:27
|
2018-12-10 05:27:19 +00:00
179 | let _: *mut f32 = std::mem::transmute(mut_ptr);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `mut_ptr as *mut f32`
error: transmute from a reference to a reference
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:181:23
|
2018-12-10 05:27:19 +00:00
181 | let _: &f32 = std::mem::transmute(&1u32);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(&1u32 as *const u32 as *const f32)`
error: transmute from a reference to a reference
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:182:23
|
2018-12-10 05:27:19 +00:00
182 | let _: &f64 = std::mem::transmute(&1f32);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(&1f32 as *const f32 as *const f64)`
error: transmute from a reference to a reference
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:185:27
|
2018-12-10 05:27:19 +00:00
185 | let _: &mut f32 = std::mem::transmute(&mut 1u32);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&mut *(&mut 1u32 as *mut u32 as *mut f32)`
error: transmute from a reference to a reference
2018-12-10 05:27:19 +00:00
--> $DIR/transmute.rs:186:37
|
2018-12-10 05:27:19 +00:00
186 | let _: &GenericParam<f32> = std::mem::transmute(&GenericParam { t: 1u32 });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&*(&GenericParam { t: 1u32 } as *const GenericParam<u32> as *const GenericParam<f32>)`
error: aborting due to 38 previous errors
2018-01-16 16:06:27 +00:00