Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
proc-macro
/
cfg-eval-fail.rs
blob: a94dcd28378119721797f7f40870079612f99b23 [
file
] [
log
] [
blame
]
#![
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
}