2021-11-04 13:57:39 -07:00
|
|
|
// Scraped example should only include line numbers for items b and c in ex.rs
|
2025-02-24 13:28:55 +00:00
|
|
|
//@ !has foobar/fn.f.html '//span[@data-nosnippet]' '14'
|
|
|
|
|
//@ has foobar/fn.f.html '//span[@data-nosnippet]' '15'
|
|
|
|
|
//@ has foobar/fn.f.html '//span[@data-nosnippet]' '21'
|
|
|
|
|
//@ !has foobar/fn.f.html '//span[@data-nosnippet]' '22'
|
2021-11-04 13:57:39 -07:00
|
|
|
|
|
|
|
|
pub fn f() {}
|
|
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
|
macro_rules! a_rules_macro {
|
2024-05-29 15:01:33 +10:00
|
|
|
($e:expr) => {
|
|
|
|
|
($e, foobar::f());
|
|
|
|
|
};
|
2021-11-04 13:57:39 -07:00
|
|
|
}
|