rust/tests/ui/zero_ptr.stderr

36 lines
1.0 KiB
Plaintext
Raw Normal View History

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