mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-05 15:14:34 +00:00
10 lines
294 B
Rust
10 lines
294 B
Rust
// this program is not technically incorrect, but is an obscure enough style to be worth linting
|
|
#![deny(temporary_cstring_as_ptr)]
|
|
|
|
use std::ffi::CString;
|
|
|
|
fn main() {
|
|
let s = CString::new("some text").unwrap().as_ptr();
|
|
//~^ ERROR getting the inner pointer of a temporary `CString`
|
|
}
|