summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/reexport-stability-tags-unstable-and-portability.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/reexport-stability-tags-unstable-and-portability.rs')
-rw-r--r--src/test/rustdoc/reexport-stability-tags-unstable-and-portability.rs61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/test/rustdoc/reexport-stability-tags-unstable-and-portability.rs b/src/test/rustdoc/reexport-stability-tags-unstable-and-portability.rs
deleted file mode 100644
index ff8a910f5..000000000
--- a/src/test/rustdoc/reexport-stability-tags-unstable-and-portability.rs
+++ /dev/null
@@ -1,61 +0,0 @@
-#![crate_name = "foo"]
-#![feature(doc_cfg)]
-#![feature(staged_api)]
-#![stable(feature = "rust1", since = "1.0.0")]
-
-#[stable(feature = "rust1", since = "1.0.0")]
-pub mod tag {
- #[unstable(feature = "humans", issue = "none")]
- pub trait Unstable {}
-
- #[stable(feature = "rust1", since = "1.0.0")]
- #[doc(cfg(feature = "sync"))]
- pub trait Portability {}
-
- #[unstable(feature = "humans", issue = "none")]
- #[doc(cfg(feature = "sync"))]
- pub trait Both {}
-
- #[stable(feature = "rust1", since = "1.0.0")]
- pub trait None {}
-}
-
-// @has foo/mod1/index.html
-#[stable(feature = "rust1", since = "1.0.0")]
-pub mod mod1 {
- // @has - '//code' 'pub use tag::Unstable;'
- // @has - '//span' 'Experimental'
- // @!has - '//span' 'sync'
- #[stable(feature = "rust1", since = "1.0.0")]
- pub use tag::Unstable;
-}
-
-// @has foo/mod2/index.html
-#[stable(feature = "rust1", since = "1.0.0")]
-pub mod mod2 {
- // @has - '//code' 'pub use tag::Portability;'
- // @!has - '//span' 'Experimental'
- // @has - '//span' 'sync'
- #[stable(feature = "rust1", since = "1.0.0")]
- pub use tag::Portability;
-}
-
-// @has foo/mod3/index.html
-#[stable(feature = "rust1", since = "1.0.0")]
-pub mod mod3 {
- // @has - '//code' 'pub use tag::Both;'
- // @has - '//span' 'Experimental'
- // @has - '//span' 'sync'
- #[stable(feature = "rust1", since = "1.0.0")]
- pub use tag::Both;
-}
-
-// @has foo/mod4/index.html
-#[stable(feature = "rust1", since = "1.0.0")]
-pub mod mod4 {
- // @has - '//code' 'pub use tag::None;'
- // @!has - '//span' 'Experimental'
- // @!has - '//span' 'sync'
- #[stable(feature = "rust1", since = "1.0.0")]
- pub use tag::None;
-}