mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 12:44:40 +00:00
7 lines
113 B
Rust
7 lines
113 B
Rust
trait MyTrait<T>: Iterator {
|
|
Item = T;
|
|
//~^ ERROR expected one of `!` or `::`, found `=`
|
|
}
|
|
|
|
fn main() {}
|