]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-21153.rs
Rollup merge of #57296 - JosephTLyons:Fix-question-mark-operator-in-stdio-document...
[rust.git] / src / test / ui / parser / issue-21153.rs
1 trait MyTrait<T>: Iterator { //~ ERROR missing `fn`, `type`, or `const`
2     Item = T;
3 }
4
5 fn main() {}