]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/different_byref.stderr
New upstream version 1.46.0+dfsg1
[rustc.git] / src / test / ui / const-generics / different_byref.stderr
CommitLineData
f9f354fc
XL
1warning: the feature `const_generics` is incomplete and may not be safe to use and/or cause compiler crashes
2 --> $DIR/different_byref.rs:1:12
3 |
4LL | #![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
10error[E0308]: mismatched types
11 --> $DIR/different_byref.rs:8:9
12 |
13LL | x = Const::<{ [4] }> {};
f035d41b 14 | ^^^^^^^^^^^^^^^^^^^ expected `3_usize`, found `4_usize`
f9f354fc 15 |
f035d41b
XL
16 = note: expected type `[3_usize]`
17 found type `[4_usize]`
f9f354fc
XL
18
19error: aborting due to previous error; 1 warning emitted
20
21For more information about this error, try `rustc --explain E0308`.