rust/tests/ui/cstring.stderr

17 lines
551 B
Plaintext
Raw Normal View History

2017-10-09 23:15:19 -05:00
error: you are getting the inner pointer of a temporary `CString`
2018-12-09 23:27:19 -06:00
--> $DIR/cstring.rs:16:5
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | CString::new("foo").unwrap().as_ptr();
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: #[deny(clippy::temporary_cstring_as_ptr)] on by default
= 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
2018-12-09 23:27:19 -06:00
--> $DIR/cstring.rs:16:5
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | CString::new("foo").unwrap().as_ptr();
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-10-09 23:15:19 -05:00
2018-01-16 10:06:27 -06:00
error: aborting due to previous error