mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 02:08:28 +00:00
17 lines
515 B
Text
17 lines
515 B
Text
|
error: borrow as raw pointer
|
||
|
--> $DIR/borrow_as_ptr_no_std.rs:9:14
|
||
|
|
|
||
|
LL | let _p = &val as *const i32;
|
||
|
| ^^^^^^^^^^^^^^^^^^ help: try: `core::ptr::addr_of!(val)`
|
||
|
|
|
||
|
= note: `-D clippy::borrow-as-ptr` implied by `-D warnings`
|
||
|
|
||
|
error: borrow as raw pointer
|
||
|
--> $DIR/borrow_as_ptr_no_std.rs:12:18
|
||
|
|
|
||
|
LL | let _p_mut = &mut val_mut as *mut i32;
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `core::ptr::addr_of_mut!(val_mut)`
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|