]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/issue-103271.stderr
Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-accesses...
[rust.git] / src / test / ui / type / issue-103271.stderr
1 error[E0599]: no function or associated item named `iter` found for reference `&[u32]` in the current scope
2   --> $DIR/issue-103271.rs:2:30
3    |
4 LL |     let iter_fun = <&[u32]>::iter;
5    |                              ^^^^ function or associated item not found in `&[u32]`
6    |
7 help: the function `iter` is implemented on `[u32]`
8    |
9 LL |     let iter_fun = <[u32]>::iter;
10    |                     ~~~~~
11
12 error[E0599]: no function or associated item named `iter` found for reference `&[u32]` in the current scope
13   --> $DIR/issue-103271.rs:10:33
14    |
15 LL |     let iter_fun2 = <(&[u32])>::iter;
16    |                                 ^^^^ function or associated item not found in `&[u32]`
17    |
18 help: the function `iter` is implemented on `[u32]`
19    |
20 LL |     let iter_fun2 = <([u32])>::iter;
21    |                       ~~~~~
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0599`.