2022-07-25 18:35:12 -05:00
|
|
|
//@ aux-build:issue-99734-aux.rs
|
|
|
|
//@ build-aux-docs
|
|
|
|
//@ ignore-cross-compile
|
|
|
|
|
2024-07-12 19:36:21 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/99734
|
2022-07-25 18:35:12 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate issue_99734_aux;
|
|
|
|
|
|
|
|
pub use issue_99734_aux::*;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ count foo/index.html '//a[@class="mod"][@title="mod foo::task"]' 1
|
2022-07-25 18:35:12 -05:00
|
|
|
|
|
|
|
pub mod task {}
|