summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/masked.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/masked.rs')
-rw-r--r--src/test/rustdoc/masked.rs31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/test/rustdoc/masked.rs b/src/test/rustdoc/masked.rs
deleted file mode 100644
index 875c026fd..000000000
--- a/src/test/rustdoc/masked.rs
+++ /dev/null
@@ -1,31 +0,0 @@
-// aux-build:masked.rs
-
-#![feature(doc_masked)]
-
-#![crate_name = "foo"]
-
-#[doc(masked)]
-extern crate masked;
-
-// @!hasraw 'search-index.js' 'masked_method'
-
-// @!hasraw 'foo/struct.String.html' 'MaskedTrait'
-// @!hasraw 'foo/struct.String.html' 'MaskedBlanketTrait'
-// @!hasraw 'foo/struct.String.html' 'masked_method'
-pub use std::string::String;
-
-// @!hasraw 'foo/trait.Clone.html' 'MaskedStruct'
-pub use std::clone::Clone;
-
-// @!hasraw 'foo/struct.MyStruct.html' 'MaskedTrait'
-// @!hasraw 'foo/struct.MyStruct.html' 'masked_method'
-pub struct MyStruct;
-
-impl masked::MaskedTrait for MyStruct {
- fn masked_method() {}
-}
-
-// @!hasraw 'foo/trait.MyTrait.html' 'MaskedStruct'
-pub trait MyTrait {}
-
-impl MyTrait for masked::MaskedStruct {}