blob: 8758342fe0736e0571e6ea5220381c42a94cfc24 (
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;
|