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