summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/as_ptr_cast_mut.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/ui/as_ptr_cast_mut.rs')
-rw-r--r--src/tools/clippy/tests/ui/as_ptr_cast_mut.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/as_ptr_cast_mut.rs b/src/tools/clippy/tests/ui/as_ptr_cast_mut.rs
index 7d71947e4..297a53b1b 100644
--- a/src/tools/clippy/tests/ui/as_ptr_cast_mut.rs
+++ b/src/tools/clippy/tests/ui/as_ptr_cast_mut.rs
@@ -1,6 +1,7 @@
#![allow(unused)]
#![warn(clippy::as_ptr_cast_mut)]
#![allow(clippy::wrong_self_convention, clippy::unnecessary_cast)]
+//@no-rustfix
struct MutPtrWrapper(Vec<u8>);
impl MutPtrWrapper {
@@ -19,7 +20,10 @@ impl<T> Covariant<T> {
fn main() {
let mut string = String::new();
let _ = string.as_ptr() as *mut u8;
+ //~^ ERROR: casting the result of `as_ptr` to *mut u8
+ //~| NOTE: `-D clippy::as-ptr-cast-mut` implied by `-D warnings`
let _: *mut i8 = string.as_ptr() as *mut _;
+ //~^ ERROR: casting the result of `as_ptr` to *mut i8
let _ = string.as_ptr() as *const i8;
let _ = string.as_mut_ptr();
let _ = string.as_mut_ptr() as *mut u8;