Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
rustdoc
/
auxiliary
/
normalize-assoc-item.rs
blob: fbd111c3035662e7894695b022c135bab7c30a50 [
file
] [
log
] [
blame
]
#![
crate_name
=
"inner"
]
pub
trait
MyTrait
{
type
Y
;
}
impl
MyTrait
for
u32
{
type
Y
=
i32
;
}
pub
fn
foo
()
->
<
u32
as
MyTrait
>::
Y
{
0
}