7 lines
113 B
Rust
7 lines
113 B
Rust
trait MyTrait<T>: Iterator {
|
|
Item = T;
|
|
//~^ ERROR expected one of `!` or `::`, found `=`
|
|
}
|
|
|
|
fn main() {}
|