]> git.lizzy.rs Git - rust.git/blob - src/test/ui/conservative_impl_trait.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / conservative_impl_trait.stderr
1 error[E0277]: the trait bound `(): std::iter::Iterator` is not satisfied
2   --> $DIR/conservative_impl_trait.rs:13:33
3    |
4 LL | fn will_ice(something: &u32) -> impl Iterator<Item = &u32> {
5    |                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^ `()` is not an iterator; maybe try calling `.iter()` or a similar method
6    |
7    = help: the trait `std::iter::Iterator` is not implemented for `()`
8    = note: the return type of a function must have a statically known size
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.