rust/tests/rustdoc-ui/doctest/doc-test-doctest-feature.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
343 B
Rust
Raw Normal View History

// check-pass
2019-10-08 03:26:31 -05:00
// compile-flags:--test
// normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
2019-10-08 03:26:31 -05:00
// Make sure `cfg(doctest)` is set when finding doctests but not inside
// the doctests.
/// ```
/// assert!(!cfg!(doctest));
/// ```
#[cfg(doctest)]
pub struct Foo;