]> git.lizzy.rs Git - rust.git/blob - tests/ui/cstring.stderr
Auto merge of #3635 - matthiaskrgr:revert_random_state_3603, r=xfix
[rust.git] / tests / ui / cstring.stderr
1 error: you are getting the inner pointer of a temporary `CString`
2   --> $DIR/cstring.rs:16:5
3    |
4 LL |     CString::new("foo").unwrap().as_ptr();
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: #[deny(clippy::temporary_cstring_as_ptr)] on by default
8    = note: that pointer will be invalid outside this expression
9 help: assign the `CString` to a variable to extend its lifetime
10   --> $DIR/cstring.rs:16:5
11    |
12 LL |     CString::new("foo").unwrap().as_ptr();
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16