rustc/tests/rustdoc-ui/intra-doc/issue-108653-associated-items-9.rs
2023-09-14 08:56:40 +02:00

12 lines
193 B
Rust

// 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; }