]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-48414.rs
Update snap from `1.0.1` to `1.1.0`
[rust.git] / tests / 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};