rust/tests/ui/span/E0805.rs
Jonathan Brouwer b78800fd5d
Port cfg!() macro to the new attribute parsing system
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
2025-11-03 18:23:41 +01:00

3 lines
57 B
Rust

pub fn main() {
if cfg!(not()) { } //~ ERROR E0805
}