blob: ce3383a2961aa8735e56c1b63ebc1e740fec3fc4 (
plain)
1
2
3
4
5
6
7
8
|
// This test check that #![allow(unexpected_cfgs)] works with --cfg
//
// check-pass
// compile-flags: --cfg=unexpected --check-cfg=names() -Z unstable-options
#![allow(unexpected_cfgs)]
fn main() {}
|