summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-99734-multiple-mods-w-same-name.rs
blob: b2f9b8b46578b870bf91eba1eafdd39654e67f5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// aux-build:issue-99734-aux.rs
// build-aux-docs
// ignore-cross-compile

#![crate_name = "foo"]

#[macro_use]
extern crate issue_99734_aux;

pub use issue_99734_aux::*;

// @count foo/index.html '//a[@class="mod"][@title="foo::task mod"]' 1

pub mod task {}