mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
343 B
Rust
14 lines
343 B
Rust
// check-pass
|
|
// compile-flags:--test
|
|
// normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
|
|
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
|
|
|
|
// Make sure `cfg(doctest)` is set when finding doctests but not inside
|
|
// the doctests.
|
|
|
|
/// ```
|
|
/// assert!(!cfg!(doctest));
|
|
/// ```
|
|
#[cfg(doctest)]
|
|
pub struct Foo;
|