blob: 984d49b43efd09b772e0f94dd36012b33b0cc233 [file] [log] [blame]
// build-pass
// compile-flags:--test
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"
#![feature(cfg_doctest)]
// Make sure `cfg(doctest)` is set when finding doctests but not inside
// the doctests.
/// ```
/// #![feature(cfg_doctest)]
/// assert!(!cfg!(doctest));
/// ```
#[cfg(doctest)]
pub struct Foo;