summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-33178.rs
blob: ed643f5ae118f6d174b0e5e80531c497b6bf2a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// aux-build:empty.rs
// aux-build:variant-struct.rs
// build-aux-docs
// ignore-cross-compile

// @has issue_33178/index.html
// @has - '//a[@title="mod empty"][@href="../empty/index.html"]' empty
pub extern crate empty;

// @has - '//a[@title="mod variant_struct"][@href="../variant_struct/index.html"]' variant_struct
pub extern crate variant_struct as foo;

// @has - '//a[@title="mod issue_33178"][@href="index.html"]' self
pub extern crate self as bar;