blob: 1434bef49e0e48865f6a5ebe86a6570852fb9b95 [file] [log] [blame]
// Regression test for ICE https://github.com/rust-lang/rust/issues/73061
//@ check-pass
//@ aux-build:issue-73061.rs
extern crate issue_73061;
pub struct Z;
impl issue_73061::Foo for Z {
type X = <issue_73061::F as issue_73061::Foo>::X;
fn x(&self) -> Self::X {
issue_73061::F.x()
}
}