]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-30109.rs
Rollup merge of #106323 - starkat99:stabilize-f16c_target_feature, r=petrochenkov
[rust.git] / tests / rustdoc / issue-30109.rs
1 // build-aux-docs
2 // aux-build:issue-30109-1.rs
3 // ignore-cross-compile
4
5 pub mod quux {
6     extern crate issue_30109_1 as bar;
7     use self::bar::Bar;
8
9     pub trait Foo {}
10
11     // @has issue_30109/quux/trait.Foo.html \
12     //          '//a/@href' '../issue_30109_1/struct.Bar.html'
13     impl Foo for Bar {}
14 }