about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/doc-test-rustdoc-feature.rs
blob: 62fd3da9233fa895495fac6fd06685e01327a211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// build-pass
// compile-flags:--test
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"

#![feature(doc_cfg)]

// Make sure `cfg(doc)` is set when finding doctests but not inside the doctests.

/// ```
/// #![feature(doc_cfg)]
/// assert!(!cfg!(doc));
/// ```
#[cfg(doc)]
pub struct Foo;