summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/issue-80988.rs
blob: 1e116206f7b9482d6c2daa70408b2c5f56ff5a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Regression test for #80988
//
// check-pass

#![forbid(warnings)]

#[deny(warnings)]
//~^ WARNING incompatible with previous forbid
//~| WARNING being phased out
//~| WARNING incompatible with previous forbid
//~| WARNING being phased out
//~| WARNING incompatible with previous forbid
//~| WARNING being phased out
fn main() {}