summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-99221-multiple-structs-w-same-name.rs
blob: ba29a77ebdff8ab41cd2beeaf1490740be4256cc (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="struct foo::Print"]' 1

pub struct Print;