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