Files
rust/tests/ui/macros/cfg.rs
T
Jonathan Brouwer e7df90412c Changes to uitests
2025-12-06 10:22:13 +01:00

8 lines
297 B
Rust

fn main() {
cfg!(); //~ ERROR macro requires a cfg-pattern
cfg!(123); //~ ERROR malformed `cfg` macro input
cfg!(foo = 123); //~ ERROR malformed `cfg` macro input
cfg!(false, false); //~ ERROR expected 1 cfg-pattern
cfg!(foo); //~ WARN unexpected `cfg` condition name: `foo`
}