rust/src/test/ui/lint/lint-temporary-cstring-as-ptr.rs

9 lines
218 B
Rust
Raw Normal View History

2020-08-18 12:09:33 -04:00
// ignore-tidy-linelength
2020-08-23 14:21:58 -04:00
#![deny(temporary_cstring_as_ptr)]
2020-08-18 12:09:33 -04:00
use std::ffi::CString;
fn main() {
2020-08-18 17:02:23 -04:00
let s = CString::new("some text").unwrap().as_ptr(); //~ ERROR getting the inner pointer of a temporary `CString`
2020-08-18 12:09:33 -04:00
}