rust/src/test/rustdoc-ui/cfg-test.rs

33 lines
658 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
2019-04-24 15:26:42 -05:00
// compile-flags:--test
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"
// Crates like core have doctests gated on `cfg(not(test))` so we need to make
// sure `cfg(test)` is not active when running `rustdoc --test`.
#![feature(cfg_doctest)]
2019-04-24 15:26:42 -05:00
/// this doctest will be ignored:
///
/// ```
/// assert!(false);
/// ```
#[cfg(test)]
2019-04-24 15:26:42 -05:00
pub struct Foo;
/// this doctest will be tested:
///
/// ```
/// assert!(true);
/// ```
#[cfg(not(test))]
2019-04-24 15:26:42 -05:00
pub struct Foo;
/// this doctest will be tested, but will not appear in documentation:
///
/// ```
/// assert!(true)
/// ```
#[cfg(doctest)]
pub struct Bar;