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

#![crate_name = "foo"]

#[macro_use]
extern crate issue_99221_aux;

pub use issue_99221_aux::*;

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

pub struct Print;