mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00
14 lines
338 B
Rust
14 lines
338 B
Rust
//@ check-pass
|
|
//@ compile-flags:--test
|
|
//@ normalize-stdout: "tests/rustdoc-ui/doctest" -> "$$DIR"
|
|
//@ normalize-stdout: "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;
|