2020-04-19 16:40:53 -07:00
|
|
|
// check-pass
|
2019-09-30 16:19:08 +02:00
|
|
|
// compile-flags:--test
|
|
|
|
|
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"
|
|
|
|
|
|
|
|
|
|
#![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;
|