summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/rustdoc-scrape-examples-macros/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make-fulldeps/rustdoc-scrape-examples-macros/src/lib.rs')
-rw-r--r--tests/run-make-fulldeps/rustdoc-scrape-examples-macros/src/lib.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/run-make-fulldeps/rustdoc-scrape-examples-macros/src/lib.rs b/tests/run-make-fulldeps/rustdoc-scrape-examples-macros/src/lib.rs
deleted file mode 100644
index d8658a0f2..000000000
--- a/tests/run-make-fulldeps/rustdoc-scrape-examples-macros/src/lib.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// Scraped example should only include line numbers for items b and c in ex.rs
-// @!has foobar/fn.f.html '//*[@class="src-line-numbers"]' '14'
-// @has foobar/fn.f.html '//*[@class="src-line-numbers"]' '15'
-// @has foobar/fn.f.html '//*[@class="src-line-numbers"]' '21'
-// @!has foobar/fn.f.html '//*[@class="src-line-numbers"]' '22'
-
-pub fn f() {}
-
-#[macro_export]
-macro_rules! a_rules_macro {
- ($e:expr) => { ($e, foobar::f()); }
-}