summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/forbid-member-group.rs
blob: e2f76825a2d41d69b4d6485bcf9ee11e27cc76d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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
fn main() {
    let a: ();
}