blob: fab792f128411f10143b4ecc4781702a1bfd307c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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;
macro_rules! mymacro {
() => {
let s = CString::new("some text").unwrap().as_ptr();
//~^ ERROR getting the inner pointer of a temporary `CString`
}
}
fn main() {
let s = CString::new("some text").unwrap().as_ptr();
//~^ ERROR getting the inner pointer of a temporary `CString`
mymacro!();
}
|