2024-04-06 16:41:59 -05:00
|
|
|
// Regression test for ICE https://github.com/rust-lang/rust/issues/73061
|
2020-05-10 06:22:45 -05:00
|
|
|
|
2024-04-06 16:41:59 -05:00
|
|
|
//@ check-pass
|
2020-05-10 06:22:45 -05:00
|
|
|
//@ 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()
|
|
|
|
}
|
|
|
|
}
|