]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const-argument-cross-crate-mismatch.stderr
8461755dbfe57c1ef55241504e3093784f76f61b
[rust.git] / src / test / ui / const-generics / const-argument-cross-crate-mismatch.stderr
1 error[E0308]: mismatched types
2   --> $DIR/const-argument-cross-crate-mismatch.rs:6:67
3    |
4 LL |     let _ = const_generic_lib::function(const_generic_lib::Struct([0u8, 1u8]));
5    |                                                                   ^^^^^^^^^^ expected an array with a fixed size of 3 elements, found one with 2 elements
6    |
7    = note: expected array `[u8; 3]`
8               found array `[u8; 2]`
9
10 error[E0308]: mismatched types
11   --> $DIR/const-argument-cross-crate-mismatch.rs:8:65
12    |
13 LL |     let _: const_generic_lib::Alias = const_generic_lib::Struct([0u8, 1u8, 2u8]);
14    |                                                                 ^^^^^^^^^^^^^^^ expected an array with a fixed size of 2 elements, found one with 3 elements
15    |
16    = note: expected array `[u8; 2]`
17               found array `[u8; 3]`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0308`.