rust/src/test/ui/iterators/bound.rs
Oliver Scherer 61efc3b71b Update tests
2018-12-04 10:06:05 +01:00

4 lines
86 B
Rust

struct S<I: Iterator>(I);
struct T(S<u8>);
//~^ ERROR is not an iterator
fn main() {}