]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-21153.rs
Auto merge of #57114 - Zoxc:query-perf11, r=michaelwoerister
[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() {}