summaryrefslogtreecommitdiffstats
path: root/src/test/ui/methods/issues/issue-94581.stderr
blob: d6be29cf582c37deef9e4b75a9280a4dfcc15779 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0599]: `&'static [i32]` is not an iterator
  --> $DIR/issue-94581.rs:6:29
   |
LL |     let sqsum = get_slice().map(|i| i * i).sum();
   |                             ^^^ `&'static [i32]` is not an iterator; try calling `.iter()`
   |
   = note: the following trait bounds were not satisfied:
           `&'static [i32]: Iterator`
           which is required by `&mut &'static [i32]: Iterator`
           `[i32]: Iterator`
           which is required by `&mut [i32]: Iterator`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0599`.