2017-10-10 04:15:19 +00:00
|
|
|
error: you are getting the inner pointer of a temporary `CString`
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/cstring.rs:9:5
|
2017-10-10 04:15:19 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
9 | CString::new("foo").unwrap().as_ptr();
|
2017-10-10 04:15:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: #[deny(clippy::temporary_cstring_as_ptr)] on by default
|
2017-10-10 04:15:19 +00:00
|
|
|
= note: that pointer will be invalid outside this expression
|
|
|
|
help: assign the `CString` to a variable to extend its lifetime
|
2018-08-01 14:30:44 +00:00
|
|
|
--> $DIR/cstring.rs:9:5
|
2017-10-10 04:15:19 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
9 | CString::new("foo").unwrap().as_ptr();
|
2017-10-10 04:15:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to previous error
|
|
|
|
|