2022-08-11 19:50:48 +02:00
|
|
|
// This test check that #![allow(unexpected_cfgs)] works with --cfg
|
|
|
|
//
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2024-04-09 14:07:30 +02:00
|
|
|
//@ no-auto-check-cfg
|
2024-02-25 14:56:14 +01:00
|
|
|
//@ compile-flags: --cfg=unexpected --check-cfg=cfg()
|
2022-08-11 19:50:48 +02:00
|
|
|
|
|
|
|
#![allow(unexpected_cfgs)]
|
|
|
|
|
|
|
|
fn main() {}
|