2017-10-09 23:15:19 -05:00
|
|
|
error: you are getting the inner pointer of a temporary `CString`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/cstring.rs:7:5
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | CString::new("foo").unwrap().as_ptr();
|
2018-10-06 09:18:06 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-07-19 00:35:32 +02:00
|
|
|
= note: `#[deny(clippy::temporary_cstring_as_ptr)]` on by default
|
2018-10-06 09:18:06 -07:00
|
|
|
= note: that pointer will be invalid outside this expression
|
2017-10-09 23:15:19 -05:00
|
|
|
help: assign the `CString` to a variable to extend its lifetime
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/cstring.rs:7:5
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | CString::new("foo").unwrap().as_ptr();
|
2018-10-06 09:18:06 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-09 23:15:19 -05:00
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to previous error
|
|
|
|
|