mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-03 18:43:38 +00:00
11 lines
174 B
Rust
11 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();
|
|
}
|