]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-22312.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-22312.stderr
1 error[E0605]: non-primitive cast: `Self` as `&dyn std::ops::Index<usize, Output = <Self as std::ops::Index<usize>>::Output>`
2   --> $DIR/issue-22312.rs:11:24
3    |
4 LL |         let indexer = &(*self as &dyn Index<usize, Output = <Self as Index<usize>>::Output>);
5    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: an `as` expression can only be used to convert between primitive types. Consider using the `From` trait
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0605`.