]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-21153.rs
Rollup merge of #57368 - petrhosek:cmake-compiler-launcher, r=alexcrichton
[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() {}