2022-08-11 12:50:48 -05:00
|
|
|
// This test check that #![allow(unexpected_cfgs)] works with --cfg
|
|
|
|
//
|
|
|
|
// check-pass
|
2023-05-01 07:16:38 -05:00
|
|
|
// compile-flags: --cfg=unexpected --check-cfg=cfg() -Z unstable-options
|
2022-08-11 12:50:48 -05:00
|
|
|
|
|
|
|
#![allow(unexpected_cfgs)]
|
|
|
|
|
|
|
|
fn main() {}
|