]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-48414.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[rust.git] / src / test / rustdoc / issue-48414.rs
1 // aux-build:issue-48414.rs
2
3 // ICE when resolving paths for a trait that linked to another trait, when both were in an external
4 // crate
5
6 #![crate_name = "base"]
7
8 extern crate issue_48414;
9
10 #[doc(inline)]
11 pub use issue_48414::{SomeTrait, OtherTrait};