rust/tests/ui/check-cfg/cfg-value-for-cfg-name-duplicate.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
391 B
Rust
Raw Normal View History

2024-01-30 02:54:40 -06:00
// #120427
// This test checks we won't suggest more than 3 span suggestions for cfg names
//
//@ check-pass
//@ no-auto-check-cfg
2024-01-30 02:54:40 -06:00
//@ compile-flags: --check-cfg=cfg(foo,values("value")) --check-cfg=cfg(bar,values("value")) --check-cfg=cfg(bee,values("value")) --check-cfg=cfg(cow,values("value"))
#[cfg(value)]
//~^ WARNING unexpected `cfg` condition name: `value`
fn x() {}
fn main() {}