]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-38919.rs
Rollup merge of #107114 - Erk-:add-absolute-note-to-path-join, r=m-ou-se
[rust.git] / tests / ui / issues / issue-38919.rs
1 fn foo<T: Iterator>() {
2     T::Item; //~ ERROR no associated item named `Item` found
3 }
4
5 fn main() { }