blob: 23dc072c6a2df87f52d4cb2755c0b89b06eb1dfb [file] [log] [blame]
//@ 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};