mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-03 00:39:07 +00:00
10 lines
161 B
Rust
10 lines
161 B
Rust
#![warn(clippy::self_named_module_files)]
|
|
|
|
mod bad;
|
|
mod more;
|
|
|
|
fn main() {
|
|
let _ = bad::Thing;
|
|
let _ = more::foo::Foo;
|
|
let _ = more::inner::Inner;
|
|
}
|