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