rust/src/test/ui/parser/issue-21153.rs
2020-02-24 00:59:38 +01:00

7 lines
113 B
Rust

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