about summary refs log tree commit diff
path: root/tests/ui/expr/if/attrs/bad-cfg.rs
blob: 6e7f4b007a9255362b0a2737d9a547678215e1b5 (plain)
1
2
3
4
5
#![feature(stmt_expr_attributes)]

fn main() {
    let _ = #[cfg(false)] if true {}; //~ ERROR removing an expression
}