rust/src/test/ui/parser/issue-21153.rs

5 lines
102 B
Rust

trait MyTrait<T>: Iterator { //~ ERROR missing `fn`, `type`, or `const`
Item = T;
}
fn main() {}