mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
421 B
Rust
18 lines
421 B
Rust
// Check what happens when we forbid a group but
|
|
// then allow a member of that group.
|
|
//
|
|
// check-pass
|
|
|
|
#![forbid(unused)]
|
|
|
|
#[allow(unused_variables)]
|
|
//~^ WARNING incompatible with previous forbid
|
|
//~| WARNING previously accepted
|
|
//~| WARNING incompatible with previous forbid
|
|
//~| WARNING previously accepted
|
|
//~| WARNING incompatible with previous forbid
|
|
//~| WARNING previously accepted
|
|
fn main() {
|
|
let a: ();
|
|
}
|