Sign in
rust
/
rust
/
refs/heads/main
/
.
/
tests
/
ui
/
conditional-compilation
/
cfg_attr-invalid-predicate-inner.rs
blob: 18794eb99252ebcc24574d8b9c63ce4247828782 [
file
] [
edit
]
// Regression test for https://github.com/rust-lang/rust/issues/157892
#![
cfg_attr
(
a
())]
//~^ ERROR malformed `cfg_attr` attribute input [E0539]
//~| ERROR malformed `cfg_attr` attribute input [E0539]
fn
main
()
{}