Files
rust/tests/ui/single_component_path_imports_nested_first.rs

23 lines
430 B
Rust
Raw Normal View History

#![warn(clippy::single_component_path_imports)]
#![allow(unused_imports)]
2023-07-27 11:40:22 +00:00
//@no-rustfix
use regex;
2025-02-11 17:57:08 +01:00
//~^ single_component_path_imports
use serde as edres;
pub use serde;
fn main() {
regex::Regex::new(r"^\d{4}-\d{2}-\d{2}$").unwrap();
}
mod root_nested_use_mod {
use {regex, serde};
2025-02-11 17:57:08 +01:00
//~^ single_component_path_imports
//~| single_component_path_imports
#[allow(dead_code)]
fn root_nested_use_mod() {}
}