rust-clippy/tests/ui/cstring.stderr
2018-10-06 09:43:08 -07:00

16 lines
551 B
Text

error: you are getting the inner pointer of a temporary `CString`
--> $DIR/cstring.rs:19:5
|
19 | CString::new("foo").unwrap().as_ptr();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: #[deny(clippy::temporary_cstring_as_ptr)] on by default
= note: that pointer will be invalid outside this expression
help: assign the `CString` to a variable to extend its lifetime
--> $DIR/cstring.rs:19:5
|
19 | CString::new("foo").unwrap().as_ptr();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error