]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/wf-misc.stderr
Auto merge of #75293 - poliorcetics:intra-doc-links-std-path, r=jyn514
[rust.git] / src / test / ui / const-generics / wf-misc.stderr
1 warning: the feature `const_generics` is incomplete and may not be safe to use and/or cause compiler crashes
2   --> $DIR/wf-misc.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
10 error: constant expression depends on a generic parameter
11   --> $DIR/wf-misc.rs:5:12
12    |
13 LL |     let _: [u8; N + 1];
14    |            ^^^^^^^^^^^
15    |
16    = note: this may fail depending on what value the parameter takes
17
18 error: constant expression depends on a generic parameter
19   --> $DIR/wf-misc.rs:12:12
20    |
21 LL |     let _: Const::<{N + 1}>;
22    |            ^^^^^^^^^^^^^^^^
23    |
24    = note: this may fail depending on what value the parameter takes
25
26 error: aborting due to 2 previous errors; 1 warning emitted
27