mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-05 01:38:45 +00:00
11 lines
161 B
Rust
11 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;
|
||
|
}
|