]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-48414.rs
Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen
[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};