13 lines
230 B
Rust
13 lines
230 B
Rust
|
// 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();
|
||
|
}
|