summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/forbid-group-group-1.rs
blob: 80f7db4e56036b99c9c109e2ed354eda5e71db90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Check what happens when we forbid a smaller group but
// then allow a superset of that group.

#![forbid(nonstandard_style)]

// FIXME: Arguably this should be an error, but the WARNINGS group is
// treated in a very special (and rather ad-hoc) way and
// it fails to trigger.
#[allow(warnings)]
fn main() {
    let A: ();
    //~^ ERROR should have a snake case name
}