@@ -887,65 +887,6 @@ foo(3_i8);
887
887
// therefore the type-checker complains with this error code.
888
888
```
889
889
890
- Here is a more subtle instance of the same problem, that can
891
- arise with for-loops in Rust:
892
-
893
- ```compile_fail
894
- let vs: Vec<i32> = vec![1, 2, 3, 4];
895
- for v in &vs {
896
- match v {
897
- 1 => {},
898
- _ => {},
899
- }
900
- }
901
- ```
902
-
903
- The above fails because of an analogous type mismatch,
904
- though may be harder to see. Again, here are some
905
- explanatory comments for the same example:
906
-
907
- ```compile_fail
908
- {
909
- let vs = vec![1, 2, 3, 4];
910
-
911
- // `for`-loops use a protocol based on the `Iterator`
912
- // trait. Each item yielded in a `for` loop has the
913
- // type `Iterator::Item` -- that is, `Item` is the
914
- // associated type of the concrete iterator impl.
915
- for v in &vs {
916
- // ~ ~~~
917
- // | |
918
- // | We borrow `vs`, iterating over a sequence of
919
- // | *references* of type `&Elem` (where `Elem` is
920
- // | vector's element type). Thus, the associated
921
- // | type `Item` must be a reference `&`-type ...
922
- // |
923
- // ... and `v` has the type `Iterator::Item`, as dictated by
924
- // the `for`-loop protocol ...
925
-
926
- match v {
927
- 1 => {}
928
- // ~
929
- // |
930
- // ... but *here*, `v` is forced to have some integral type;
931
- // only types like `u8`,`i8`,`u16`,`i16`, et cetera can
932
- // match the pattern `1` ...
933
-
934
- _ => {}
935
- }
936
-
937
- // ... therefore, the compiler complains, because it sees
938
- // an attempt to solve the equations
939
- // `some integral-type` = type-of-`v`
940
- // = `Iterator::Item`
941
- // = `&Elem` (i.e. `some reference type`)
942
- //
943
- // which cannot possibly all be true.
944
-
945
- }
946
- }
947
- ```
948
-
949
890
To avoid those issues, you have to make the types match correctly.
950
891
So we can fix the previous examples like this:
951
892
0 commit comments