2020-08-09 06:19:57 +00:00
|
|
|
error[E0308]: mismatched types
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/different_generic_args_array.rs:9:9
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
|
|
|
LL | x = Const::<{ [4] }> {};
|
2022-07-19 02:25:14 +03:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ expected `[3]`, found `[4]`
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
2022-07-19 02:25:14 +03:00
|
|
|
= note: expected struct `Const<[3]>`
|
|
|
|
found struct `Const<[4]>`
|
2020-08-09 06:19:57 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-08-09 06:19:57 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|