rust-clippy/tests/ui/zero_ptr.stderr

36 lines
1 KiB
Text
Raw Normal View History

2019-10-02 15:38:00 +00:00
error: `0 as *const _` detected
2024-02-17 12:16:29 +00:00
--> tests/ui/zero_ptr.rs:4:13
2018-10-06 16:18:06 +00:00
|
2019-10-02 15:38:00 +00:00
LL | let _ = 0 as *const usize;
| ^^^^^^^^^^^^^^^^^ help: try: `std::ptr::null::<usize>()`
2018-10-06 16:18:06 +00:00
|
= note: `-D clippy::zero-ptr` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::zero_ptr)]`
2019-10-02 15:38:00 +00:00
error: `0 as *mut _` detected
2024-02-17 12:16:29 +00:00
--> tests/ui/zero_ptr.rs:5:13
2018-10-06 16:18:06 +00:00
|
2019-10-02 15:38:00 +00:00
LL | let _ = 0 as *mut f64;
| ^^^^^^^^^^^^^ help: try: `std::ptr::null_mut::<f64>()`
2019-10-02 15:38:00 +00:00
error: `0 as *const _` detected
2024-02-17 12:16:29 +00:00
--> tests/ui/zero_ptr.rs:6:24
2019-10-02 15:38:00 +00:00
|
LL | let _: *const u8 = 0 as *const _;
| ^^^^^^^^^^^^^ help: try: `std::ptr::null()`
error: `0 as *const _` detected
2024-02-17 12:16:29 +00:00
--> tests/ui/zero_ptr.rs:9:9
2019-10-02 15:38:00 +00:00
|
LL | foo(0 as *const _, 0 as *mut _);
| ^^^^^^^^^^^^^ help: try: `std::ptr::null()`
error: `0 as *mut _` detected
2024-02-17 12:16:29 +00:00
--> tests/ui/zero_ptr.rs:9:24
2019-10-02 15:38:00 +00:00
|
LL | foo(0 as *const _, 0 as *mut _);
| ^^^^^^^^^^^ help: try: `std::ptr::null_mut()`
error: aborting due to 5 previous errors
2018-01-16 16:06:27 +00:00