]> git.lizzy.rs Git - rust.git/blob - tests/ui/cstring.stderr
Merge pull request #2984 from flip1995/single_char_pattern
[rust.git] / tests / ui / cstring.stderr
1 error: you are getting the inner pointer of a temporary `CString`
2  --> $DIR/cstring.rs:7:5
3   |
4 7 |     CString::new("foo").unwrap().as_ptr();
5   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6   |
7   = note: #[deny(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:7:5
11   |
12 7 |     CString::new("foo").unwrap().as_ptr();
13   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16