2019-11-15 19:27:07 +00:00
|
|
|
error: using a potentially dangerous silent `as` conversion
|
2022-01-13 12:18:19 +00:00
|
|
|
--> $DIR/as_conversions.rs:15:13
|
2019-11-15 19:27:07 +00:00
|
|
|
|
|
|
|
|
LL | let i = 0u32 as u64;
|
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::as-conversions` implied by `-D warnings`
|
|
|
|
= help: consider using a safe wrapper for this conversion
|
|
|
|
|
|
|
|
error: using a potentially dangerous silent `as` conversion
|
2022-01-13 12:18:19 +00:00
|
|
|
--> $DIR/as_conversions.rs:17:13
|
2019-11-15 19:27:07 +00:00
|
|
|
|
|
|
|
|
LL | let j = &i as *const u64 as *mut u64;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using a safe wrapper for this conversion
|
|
|
|
|
|
|
|
error: using a potentially dangerous silent `as` conversion
|
2022-01-13 12:18:19 +00:00
|
|
|
--> $DIR/as_conversions.rs:17:13
|
2019-11-15 19:27:07 +00:00
|
|
|
|
|
|
|
|
LL | let j = &i as *const u64 as *mut u64;
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: consider using a safe wrapper for this conversion
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|