2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2025-03-09 01:37:16 +00:00
rust-clippy/tests/ui/create_dir.rs

16 lines
303 B
Rust

#![allow(unused_must_use)]
#![warn(clippy::create_dir)]
use std::fs::create_dir_all;
fn create_dir() {}
fn main() {
// Should be warned
std::fs::create_dir("foo");
std::fs::create_dir("bar").unwrap();
// Shouldn't be warned
create_dir();
std::fs::create_dir_all("foobar");
}