Sign in
fuchsia
/
third_party
/
rust
/
cd09d98fd2f99ca6afe30517711d70f4a934c52a
/
.
/
tests
/
rustdoc-ui
/
invalid-cfg.rs
blob: d237b8605c068a0614fda35c931d35c36452fc78 [
file
] [
log
] [
blame
]
#![
feature
(
doc_cfg
)]
#[
doc
(
cfg
=
"x"
)]
//~ ERROR not followed by parentheses
#[
doc
(
cfg
(
x
,
y
))]
//~ ERROR multiple `cfg` predicates
struct
S
{}