2021-01-29 18:06:00 -06:00
|
|
|
// Check what happens when we forbid a bigger group but
|
|
|
|
// then deny a subset of that group.
|
|
|
|
|
|
|
|
#![forbid(warnings)]
|
|
|
|
#![deny(forbidden_lint_groups)]
|
|
|
|
|
|
|
|
#[allow(nonstandard_style)]
|
|
|
|
//~^ ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
2021-07-20 22:23:22 -05:00
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
|
|
|
//~| ERROR incompatible with previous
|
|
|
|
//~| WARNING previously accepted by the compiler
|
2021-01-29 18:06:00 -06:00
|
|
|
fn main() {}
|