rust/tests/ui/cstring.stderr

17 lines
530 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`
--> $DIR/cstring.rs:7:5
|
7 | CString::new("foo").unwrap().as_ptr();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-03-28 16:49:32 -05:00
= note: #[deny(temporary_cstring_as_ptr)] on by default
2017-10-09 23:15:19 -05:00
= 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();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-16 10:06:27 -06:00
error: aborting due to previous error