2021-12-23 10:05:43 +01:00
|
|
|
error[E0658]: using `_` for array lengths is unstable
|
2025-01-02 18:49:43 +00:00
|
|
|
--> $DIR/feature-gate-generic_arg_infer.rs:13:18
|
2021-12-23 10:05:43 +01:00
|
|
|
|
|
|
|
|
|
LL | let _y: [u8; _] = [0; 3];
|
2022-08-16 03:42:58 +09:00
|
|
|
| ^ help: consider specifying the array length: `3`
|
2021-12-23 10:05:43 +01:00
|
|
|
|
|
|
|
|
|
= note: see issue #85077 <https://github.com/rust-lang/rust/issues/85077> for more information
|
|
|
|
|
= help: add `#![feature(generic_arg_infer)]` to the crate attributes to enable
|
2024-01-10 01:39:02 -05:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2021-12-23 10:05:43 +01:00
|
|
|
|
2025-01-08 21:05:35 +00:00
|
|
|
error[E0658]: const arguments cannot yet be inferred with `_`
|
2025-01-02 18:49:43 +00:00
|
|
|
--> $DIR/feature-gate-generic_arg_infer.rs:18:20
|
2021-05-06 15:33:44 +00:00
|
|
|
|
|
2025-01-08 21:05:35 +00:00
|
|
|
LL | let _x = foo::<_>([1, 2]);
|
2021-05-06 15:33:44 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
2025-01-08 21:05:35 +00:00
|
|
|
= note: see issue #85077 <https://github.com/rust-lang/rust/issues/85077> for more information
|
|
|
|
|
= help: add `#![feature(generic_arg_infer)]` to the crate attributes to enable
|
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2021-05-06 15:33:44 +00:00
|
|
|
|
2022-08-16 00:16:14 +09:00
|
|
|
error[E0658]: using `_` for array lengths is unstable
|
|
|
|
|
--> $DIR/feature-gate-generic_arg_infer.rs:11:27
|
|
|
|
|
|
|
|
|
|
|
LL | let _x: [u8; 3] = [0; _];
|
|
|
|
|
| ^
|
|
|
|
|
|
|
|
|
|
|
= note: see issue #85077 <https://github.com/rust-lang/rust/issues/85077> for more information
|
|
|
|
|
= help: add `#![feature(generic_arg_infer)]` to the crate attributes to enable
|
2024-01-10 01:39:02 -05:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-08-16 00:16:14 +09:00
|
|
|
|
2025-01-02 18:49:43 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2021-05-06 15:33:44 +00:00
|
|
|
|
2025-01-08 21:05:35 +00:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|