rust/tests/ui/zero_ptr.stderr

35 lines
976 B
Text
Raw Normal View History

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