2020-04-19 16:40:53 -07:00
|
|
|
//@ check-pass
|
2019-09-30 16:19:08 +02:00
|
|
|
//@ compile-flags:--test
|
2023-04-29 04:08:33 -05:00
|
|
|
//@ normalize-stdout-test: "tests/rustdoc-ui/doctest" -> "$$DIR"
|
2024-06-21 15:15:36 +10:00
|
|
|
//@ normalize-stdout-test: "finished in \d+\.\d+s" -> "finished in $$TIME"
|
2019-09-30 16:19:08 +02:00
|
|
|
|
|
|
|
#![feature(doc_cfg)]
|
|
|
|
|
2019-11-06 18:32:51 +01:00
|
|
|
// Make sure `cfg(doc)` is set when finding doctests but not inside the doctests.
|
2019-09-30 16:19:08 +02:00
|
|
|
|
|
|
|
/// ```
|
|
|
|
/// #![feature(doc_cfg)]
|
2019-11-06 18:32:51 +01:00
|
|
|
/// assert!(!cfg!(doc));
|
2019-09-30 16:19:08 +02:00
|
|
|
/// ```
|
2019-11-06 18:32:51 +01:00
|
|
|
#[cfg(doc)]
|
2019-09-30 16:19:08 +02:00
|
|
|
pub struct Foo;
|