mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:47:04 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
// Check warning for unexpected cfg
|
|
//
|
|
//@ check-pass
|
|
//@ no-auto-check-cfg
|
|
//@ compile-flags: --check-cfg=cfg()
|
|
|
|
#[cfg(unknown_key = "value")]
|
|
//~^ WARNING unexpected `cfg` condition name
|
|
pub fn f() {}
|
|
|
|
fn main() {}
|