rust/src/test/ui/iterators/bound.rs
2018-10-09 19:01:17 -07:00

4 lines
56 B
Rust

struct S<I: Iterator>(I);
struct T(S<u8>);
fn main() {}