2018-02-21 19:58:20 -06:00
|
|
|
//@ aux-build:issue-48414.rs
|
2023-11-23 15:54:19 -06:00
|
|
|
//@ check-pass
|
2018-02-21 19:58:20 -06:00
|
|
|
|
2023-11-20 12:50:25 -06:00
|
|
|
// https://github.com/rust-lang/rust/issues/48414
|
|
|
|
|
2018-02-21 19:58:20 -06: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};
|