2022-02-19 07:31:20 -06:00
|
|
|
// check-pass
|
|
|
|
// compile-flags: --test --nocapture --check-cfg=values(feature,"test") -Z unstable-options
|
2023-01-05 02:45:44 -06:00
|
|
|
// normalize-stderr-test: "tests/rustdoc-ui" -> "$$DIR"
|
|
|
|
// normalize-stdout-test: "tests/rustdoc-ui" -> "$$DIR"
|
2022-02-19 07:31:20 -06:00
|
|
|
// 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;
|