17 lines
348 B
Rust
17 lines
348 B
Rust
//@ check-pass
|
|
// compile-args: --cap-lints=warn -Fwarnings
|
|
|
|
// This checks that the forbid attribute checking is ignored when the forbidden
|
|
// lint is capped.
|
|
|
|
#![forbid(warnings)]
|
|
#![allow(unused)]
|
|
//~^ WARN allow(unused) incompatible with previous forbid
|
|
//~| WARN previously accepted
|
|
|
|
#[allow(unused)]
|
|
mod bar {
|
|
fn bar() {}
|
|
}
|
|
|
|
fn main() {}
|