With the exception of `tests/run-make/translation/test.rs`, which has a syntax error. The expected output in `rustdoc-error-lines/rmake.rs`'s required slight tweaking. The two `reproducible-build.rs` files need `// ignore-tidy-linelength` because rustfmt produces lines longer than 100 chars, which tidy doesn't like, yuk.
14 lines
449 B
Rust
14 lines
449 B
Rust
// 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());
|
|
};
|
|
}
|