Move almost all run-make-fulldeps to run-make

They pass fine.
This commit is contained in:
Joshua Nelson
2023-03-30 07:34:55 -05:00
parent f2d9a3d077
commit 433da1fc04
696 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
// 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()); }
}