summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/circular-intra-doc-link-48414.rs
blob: 46367ccaef9a621f349bbc989a17c9d745efbaf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// aux-build:issue-48414.rs
// check-pass

// https://github.com/rust-lang/rust/issues/48414

// ICE when resolving paths for a trait that linked to another trait, when both were in an external
// crate

#![crate_name = "base"]

extern crate issue_48414;

#[doc(inline)]
pub use issue_48414::{SomeTrait, OtherTrait};