Sign in
fuchsia
/
third_party
/
rust
/
dff14f06341309b7edf3e760ab9762175db322f3
/
.
/
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
}