summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/spotlight-from-dependency.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/spotlight-from-dependency.rs')
-rw-r--r--src/test/rustdoc/spotlight-from-dependency.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/rustdoc/spotlight-from-dependency.rs b/src/test/rustdoc/spotlight-from-dependency.rs
deleted file mode 100644
index 090ad187d..000000000
--- a/src/test/rustdoc/spotlight-from-dependency.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-#![crate_name = "foo"]
-
-use std::iter::Iterator;
-
-// @has foo/struct.Odd.html
-// @has - '//*[@id="method.new"]//a[@class="notable-traits"]/@data-ty' 'Odd'
-// @snapshot odd - '//script[@id="notable-traits-data"]'
-pub struct Odd {
- current: usize,
-}
-
-impl Odd {
- pub fn new() -> Odd {
- Odd { current: 1 }
- }
-}
-
-impl Iterator for Odd {
- type Item = usize;
-
- fn next(&mut self) -> Option<Self::Item> {
- self.current += 2;
- Some(self.current - 2)
- }
-}