Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc-ui
/
intra-doc
/
issue-108653-associated-items-9.rs
blob: e4c8bcec2d3b300014f29921a20c2ebd897b281d [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
deny
(
warnings
)]
//! [usize::Item]
pub
trait
Foo
{
type
Item
;
}
pub
trait
Bar
{
type
Item
;
}
impl
Foo
for
usize
{
type
Item
=
u32
;
}
impl
Bar
for
usize
{
type
Item
=
i32
;
}