From a4b7ed7a42c716ab9f05e351f003d589124fd55d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:18:58 +0200 Subject: Adding upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- ...rt-stability-tags-deprecated-and-portability.rs | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 src/test/rustdoc/reexport-stability-tags-deprecated-and-portability.rs (limited to 'src/test/rustdoc/reexport-stability-tags-deprecated-and-portability.rs') diff --git a/src/test/rustdoc/reexport-stability-tags-deprecated-and-portability.rs b/src/test/rustdoc/reexport-stability-tags-deprecated-and-portability.rs deleted file mode 100644 index a79d05904..000000000 --- a/src/test/rustdoc/reexport-stability-tags-deprecated-and-portability.rs +++ /dev/null @@ -1,48 +0,0 @@ -#![crate_name = "foo"] -#![feature(doc_cfg)] - -pub mod tag { - #[deprecated(since = "0.1.8", note = "Use bar() instead")] - pub trait Deprecated {} - - #[doc(cfg(feature = "sync"))] - pub trait Portability {} - - #[deprecated(since = "0.1.8", note = "Use bar() instead")] - #[doc(cfg(feature = "sync"))] - pub trait Both {} - - pub trait None {} -} - -// @has foo/mod1/index.html -pub mod mod1 { - // @has - '//code' 'pub use tag::Deprecated;' - // @has - '//span' 'Deprecated' - // @!has - '//span' 'sync' - pub use tag::Deprecated; -} - -// @has foo/mod2/index.html -pub mod mod2 { - // @has - '//code' 'pub use tag::Portability;' - // @!has - '//span' 'Deprecated' - // @has - '//span' 'sync' - pub use tag::Portability; -} - -// @has foo/mod3/index.html -pub mod mod3 { - // @has - '//code' 'pub use tag::Both;' - // @has - '//span' 'Deprecated' - // @has - '//span' 'sync' - pub use tag::Both; -} - -// @has foo/mod4/index.html -pub mod mod4 { - // @has - '//code' 'pub use tag::None;' - // @!has - '//span' 'Deprecated' - // @!has - '//span' 'sync' - pub use tag::None; -} -- cgit v1.2.3