Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
auxiliary
/
issue-48984-aux.rs
blob: 7cc888cd4cb294fd12f638967b6ea211d57fa730 [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
#![
crate_name
=
"issue48984aux"
]
pub
trait
Foo
{
type
Item
;
}
pub
trait
Bar
:
Foo
<
Item
=[
u8
;
1
]>
{
}