rust/src/test/ui/issues/issue-38919.rs

6 lines
136 B
Rust
Raw Normal View History

fn foo<T: Iterator>() {
2017-01-17 16:55:49 -06:00
T::Item; //~ ERROR no associated item named `Item` found for type `T` in the current scope
}
fn main() { }