Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
rustdoc-ui
/
doc-cfg-unstable.rs
blob: b77c3654497d2a33de560707f95a48ecebf106b4 [
file
] [
log
] [
blame
]
// #138113: rustdoc didn't gate unstable predicates inside `doc(cfg(..))`
#![
feature
(
doc_cfg
)]
// `cfg_version`
#[
doc
(
cfg
(
sanitize
=
"thread"
))]
//~ ERROR `cfg(sanitize)` is experimental and subject to change
pub
fn
cfg_sanitize
()
{}