aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/cfg-attr.rs
blob: 137ed2c7adb5de89a6d1b360411d563dc0b4afec (plain)
1
2
3
4
5
6
7
// { dg-additional-options "-w -frust-cfg=A" }
#![cfg_attr(not(B), allow(dead_code))]
#![cfg_attr(A, allow(while_true))]

#[cfg_attr(not(B), allow(deprecated))]
#[cfg_attr(A, allow(drop_bounds))]
fn main() { }