2022-10-16 20:03:23 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/coerce-block-tail-83850.rs:5:7
|
|
|
|
|
|
|
|
|
LL | f(&Box::new([1, 2]));
|
2023-01-03 02:00:33 +00:00
|
|
|
| - ^^^^^^^^^^^^^^^^^ expected `&[i32]`, found `&Box<[{integer}; 2]>`
|
2022-10-16 20:03:23 +00:00
|
|
|
| |
|
|
|
|
| arguments to this function are incorrect
|
|
|
|
|
|
|
|
|
= note: expected reference `&[i32]`
|
|
|
|
found reference `&Box<[{integer}; 2]>`
|
|
|
|
note: function defined here
|
|
|
|
--> $DIR/coerce-block-tail-83850.rs:2:4
|
|
|
|
|
|
|
|
|
LL | fn f(_: &[i32]) {}
|
|
|
|
| ^ ---------
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-10-16 20:03:23 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|