]> git.lizzy.rs Git - rust.git/blob - tests/ui/cstring.stderr
Adapt the *.stderr files of the ui-tests to the tool_lints
[rust.git] / tests / ui / cstring.stderr
1 error: you are getting the inner pointer of a temporary `CString`
2  --> $DIR/cstring.rs:9:5
3   |
4 9 |     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:9:5
11   |
12 9 |     CString::new("foo").unwrap().as_ptr();
13   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16