]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const-argument-cross-crate-mismatch.stderr
Merge commit 'e329249b6a3a98830d860c74c8234a8dd9407436' into clippyup
[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 error[E0308]: mismatched types
8   --> $DIR/const-argument-cross-crate-mismatch.rs:8:65
9    |
10 LL |     let _: const_generic_lib::Alias = const_generic_lib::Struct([0u8, 1u8, 2u8]);
11    |                                                                 ^^^^^^^^^^^^^^^ expected an array with a fixed size of 2 elements, found one with 3 elements
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0308`.