mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-25 06:00:35 +00:00
9 lines
151 B
Rust
9 lines
151 B
Rust
//! Module level doc
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#[allow(unused)]
|
|
//~^ ERROR: item has both inner and outer attributes
|
|
mod foo {
|
|
#![allow(dead_code)]
|
|
}
|