Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
proc-macro
/
cfg-eval-fail.rs
blob: a259aa2e6ec0c5d145d31a9c4040a353ac6f510a [
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
}