Files
rust/tests/ui/feature-gates/feature-gate-generic_arg_infer.normal.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.5 KiB
Plaintext
Raw Normal View History

2021-12-23 10:05:43 +01:00
error[E0658]: using `_` for array lengths is unstable
--> $DIR/feature-gate-generic_arg_infer.rs:13:18
2021-12-23 10:05:43 +01:00
|
LL | let _y: [u8; _] = [0; 3];
| ^ 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 `_`
--> $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
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
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`.