]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-38919.rs
Rollup merge of #60492 - acrrd:issues/54054_chain, r=SimonSapin
[rust.git] / src / test / ui / issues / issue-38919.rs
1 fn foo<T: Iterator>() {
2     T::Item; //~ ERROR no associated item named `Item` found for type `T` in the current scope
3 }
4
5 fn main() { }