mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
12 lines
240 B
Rust
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();
|
|
}
|