]> git.proxmox.com Git - rustc.git/blob - src/test/ui/array-slice-vec/match_arr_unknown_len.stderr
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / ui / array-slice-vec / match_arr_unknown_len.stderr
1 warning: the feature `const_generics` is incomplete and may not be safe to use and/or cause compiler crashes
2 --> $DIR/match_arr_unknown_len.rs:1:12
3 |
4 LL | #![feature(const_generics)]
5 | ^^^^^^^^^^^^^^
6 |
7 = note: `#[warn(incomplete_features)]` on by default
8 = note: see issue #44580 <https://github.com/rust-lang/rust/issues/44580> for more information
9 = help: consider using `min_const_generics` instead, which is more stable and complete
10
11 error[E0308]: mismatched types
12 --> $DIR/match_arr_unknown_len.rs:6:9
13 |
14 LL | [1, 2] => true,
15 | ^^^^^^ expected `2_usize`, found `N`
16 |
17 = note: expected array `[u32; 2]`
18 found array `[u32; N]`
19
20 error: aborting due to previous error; 1 warning emitted
21
22 For more information about this error, try `rustc --explain E0308`.