rust/tests/ui/single_component_path_imports.fixed

13 lines
230 B
Rust
Raw Normal View History

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