]> git.lizzy.rs Git - rust.git/blob - tests/ui/cstring.stderr
Merge branch 'master' into rustfmt_tests
[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 16 |     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 16 |     CString::new("foo").unwrap().as_ptr();
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16