Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
rustdoc
/
issue-73061-cross-crate-opaque-assoc-type.rs
blob: 2700f2370eec8e85ffa10c2138315d3cb9a74bf5 [
file
] [
log
] [
blame
]
// Regression test for ICE #73061
// 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
()
}
}