mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
7 lines
124 B
Rust
7 lines
124 B
Rust
#![crate_type = "lib"]
|
|
#![crate_name = "issue48984aux"]
|
|
|
|
pub trait Foo { type Item; }
|
|
|
|
pub trait Bar: Foo<Item=[u8;1]> { }
|