rust/tests/ui/single_component_path_imports.rs
2020-01-30 00:22:42 +08:00

12 lines
240 B
Rust

// run-rustfix
// compile-flags: --edition 2018
#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
use regex;
use serde as edres;
pub use serde;
fn main() {
regex::Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap();
}