blob: 64a8e5204579c679605994794cff50038ab58db1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#![deny(unused_must_use)]
fn it() -> impl ExactSizeIterator<Item = ()> {
let x: Box<dyn ExactSizeIterator<Item = ()>> = todo!();
x
}
fn main() {
it();
//~^ ERROR unused implementer of `Iterator` that must be used
}
|