blob: 3279029a9cbc3fe4d7097d423d589edf640c96ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Check what happens when we forbid a member of
// a group but then allow the group.
#![forbid(unused_variables)]
#[allow(unused)]
//~^ ERROR incompatible with previous forbid
//~| ERROR incompatible with previous forbid
//~| ERROR incompatible with previous forbid
fn main() {
let a: ();
}
|