blob: 98e8e6366b99b0e00d553a758fc09a50ddd747dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0369]: cannot multiply `&T` to `&T`
--> $DIR/issue-35668.rs:2:23
|
LL | a.iter().map(|a| a*a)
| -^- &T
| |
| &T
error: aborting due to previous error
For more information about this error, try `rustc --explain E0369`.
|