summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/check-cfg-test.rs
blob: 626cc838704b3673682b36ece4ac27d64ea42213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass
// compile-flags: --test --nocapture --check-cfg=values(feature,"test") -Z unstable-options
// normalize-stderr-test: "src/test/rustdoc-ui" -> "$$DIR"
// normalize-stdout-test: "src/test/rustdoc-ui" -> "$$DIR"
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"

/// The doctest will produce a warning because feature invalid is unexpected
/// ```
/// #[cfg(feature = "invalid")]
/// assert!(false);
/// ```
pub struct Foo;