mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
10 lines
174 B
Rust
10 lines
174 B
Rust
#![feature(tool_lints)]
|
|
|
|
fn main() {}
|
|
|
|
#[allow(clippy::result_unwrap_used)]
|
|
fn temporary_cstring() {
|
|
use std::ffi::CString;
|
|
|
|
CString::new("foo").unwrap().as_ptr();
|
|
}
|