Sign in
fuchsia
/
third_party
/
rust
/
830bd8b6f4feb8665c8865beb20ffb424e8d8ee6
/
.
/
tests
/
ui
/
proc-macro
/
cfg-eval-fail.rs
blob: a259aa2e6ec0c5d145d31a9c4040a353ac6f510a [
file
]
#![
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
}