Sign in
android
/
toolchain
/
rustc
/
54272acac043c1dedfb7db7420545b31ec1ac51f
/
.
/
src
/
test
/
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
;
}