]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/const-argument-cross-crate-mismatch.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / const-generics / const-argument-cross-crate-mismatch.stderr
CommitLineData
e74abb32 1error[E0308]: mismatched types
94222f64 2 --> $DIR/const-argument-cross-crate-mismatch.rs:6:67
e74abb32
XL
3 |
4LL | let _ = const_generic_lib::function(const_generic_lib::Struct([0u8, 1u8]));
923072b8
FG
5 | ------------------------- ^^^^^^^^^^ expected an array with a fixed size of 3 elements, found one with 2 elements
6 | |
7 | arguments to this struct are incorrect
8 |
9note: tuple struct defined here
10 --> $DIR/auxiliary/const_generic_lib.rs:1:12
11 |
12LL | pub struct Struct<const N: usize>(pub [u8; N]);
13 | ^^^^^^
e74abb32
XL
14
15error[E0308]: mismatched types
94222f64 16 --> $DIR/const-argument-cross-crate-mismatch.rs:8:65
e74abb32
XL
17 |
18LL | let _: const_generic_lib::Alias = const_generic_lib::Struct([0u8, 1u8, 2u8]);
923072b8
FG
19 | ------------------------- ^^^^^^^^^^^^^^^ expected an array with a fixed size of 2 elements, found one with 3 elements
20 | |
21 | arguments to this struct are incorrect
22 |
23note: tuple struct defined here
24 --> $DIR/auxiliary/const_generic_lib.rs:1:12
25 |
26LL | pub struct Struct<const N: usize>(pub [u8; N]);
27 | ^^^^^^
e74abb32
XL
28
29error: aborting due to 2 previous errors
30
31For more information about this error, try `rustc --explain E0308`.