Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
rustdoc
/
auxiliary
/
issue-21092.rs
blob: 51ab7de1c546ca8f2bf922c11cf17a392b010563 [
file
] [
log
] [
blame
]
// compile-flags: -Cmetadata=aux
pub
trait
Foo
{
type
Bar
;
fn
foo
(&
self
)
{}
}
pub
struct
Bar
;
impl
Foo
for
Bar
{
type
Bar
=
i32
;
}