Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
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
()
{}