Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
rustdoc-ui
/
cfg-boolean-literal.rs
blob: 74808d066c7152adc11a28d5ed748977a0b0ed18 [
file
] [
log
] [
blame
]
//@ check-pass
#![
feature
(
doc_cfg
)]
#[
doc
(
cfg
(
false
))]
pub
fn
foo
()
{}
#[
doc
(
cfg
(
true
))]
pub
fn
bar
()
{}
#[
doc
(
cfg
(
any
(
true
)))]
pub
fn
zoo
()
{}
#[
doc
(
cfg
(
all
(
true
)))]
pub
fn
toy
()
{}
#[
doc
(
cfg
(
not
(
true
)))]
pub
fn
nay
()
{}