]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/cstring.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / cstring.stderr
index c3dd9cf83f648c619bbd1c64a77a7b23497d08b4..87cb29be57758a3f9679a2d95cebd4fe2caf321a 100644 (file)
@@ -1,14 +1,46 @@
 error: you are getting the inner pointer of a temporary `CString`
- --> $DIR/cstring.rs:7:5
-  |
-7 |     CString::new("foo").unwrap().as_ptr();
-  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-  |
-  = note: `-D temporary-cstring-as-ptr` implied by `-D warnings`
-  = note: that pointer will be invalid outside this expression
+  --> $DIR/cstring.rs:8:5
+   |
+LL |     CString::new("foo").unwrap().as_ptr();
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   |
+note: the lint level is defined here
+  --> $DIR/cstring.rs:1:9
+   |
+LL | #![deny(clippy::temporary_cstring_as_ptr)]
+   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   = note: that pointer will be invalid outside this expression
 help: assign the `CString` to a variable to extend its lifetime
- --> $DIR/cstring.rs:7:5
-  |
-7 |     CString::new("foo").unwrap().as_ptr();
-  |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  --> $DIR/cstring.rs:8:5
+   |
+LL |     CString::new("foo").unwrap().as_ptr();
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: you are getting the inner pointer of a temporary `CString`
+  --> $DIR/cstring.rs:9:5
+   |
+LL |     CString::new("foo").expect("dummy").as_ptr();
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   |
+   = note: that pointer will be invalid outside this expression
+help: assign the `CString` to a variable to extend its lifetime
+  --> $DIR/cstring.rs:9:5
+   |
+LL |     CString::new("foo").expect("dummy").as_ptr();
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: you are getting the inner pointer of a temporary `CString`
+  --> $DIR/cstring.rs:22:22
+   |
+LL |         unsafe { foo(cstr.unwrap().as_ptr()) }
+   |                      ^^^^^^^^^^^^^^^^^^^^^^
+   |
+   = note: that pointer will be invalid outside this expression
+help: assign the `CString` to a variable to extend its lifetime
+  --> $DIR/cstring.rs:22:22
+   |
+LL |         unsafe { foo(cstr.unwrap().as_ptr()) }
+   |                      ^^^^^^^^^^^^^
+
+error: aborting due to 3 previous errors