rust/tests/rustdoc/ice-circular-intra-doc-link-48414.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
303 B
Rust
Raw Normal View History

2018-02-22 01:58:20 +00:00
// aux-build:issue-48414.rs
2023-11-20 18:50:25 +00:00
// https://github.com/rust-lang/rust/issues/48414
2018-02-22 01:58:20 +00:00
// 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};