2022-04-25 05:07:21 -05:00
|
|
|
// This test check that we correctly emit an warning for compact cfg
|
|
|
|
//
|
2024-02-16 14:02:50 -06:00
|
|
|
//@ check-pass
|
|
|
|
//@ compile-flags: --check-cfg=cfg() -Z unstable-options
|
2022-04-25 05:07:21 -05:00
|
|
|
|
|
|
|
#![feature(cfg_target_compact)]
|
|
|
|
|
|
|
|
#[cfg(target(os = "linux", arch = "arm"))]
|
|
|
|
pub fn expected() {}
|
|
|
|
|
2023-12-07 17:42:57 -06:00
|
|
|
#[cfg(target(os = "linux", pointer_width = "X"))]
|
2022-04-25 05:07:21 -05:00
|
|
|
//~^ WARNING unexpected `cfg` condition value
|
|
|
|
pub fn unexpected() {}
|
|
|
|
|
|
|
|
fn main() {}
|