blob: a259aa2e6ec0c5d145d31a9c4040a353ac6f510a [file] [log] [blame] [edit]
#![feature(cfg_eval)]
#![feature(stmt_expr_attributes)]
fn main() {
let _ = #[cfg_eval] #[cfg(FALSE)] 0;
//~^ ERROR removing an expression is not supported in this position
}