2021-01-30 00:06:00 +00: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-21 03:23:22 +00: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-30 00:06:00 +00:00
|
|
|
fn main() {}
|