]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/generic_const_exprs/dependence_lint.full.stderr
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[rust.git] / tests / ui / const-generics / generic_const_exprs / dependence_lint.full.stderr
1 error: generic parameters may not be used in const operations
2   --> $DIR/dependence_lint.rs:14:32
3    |
4 LL |     let _: [u8; size_of::<*mut T>()]; // error on stable, error with gce
5    |                                ^ cannot perform const operation using `T`
6    |
7    = note: type parameters may not be used in const expressions
8    = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
9
10 error: generic parameters may not be used in const operations
11   --> $DIR/dependence_lint.rs:21:37
12    |
13 LL |     let _: [u8; if true { size_of::<T>() } else { 3 }]; // error on stable, error with gce
14    |                                     ^ cannot perform const operation using `T`
15    |
16    = note: type parameters may not be used in const expressions
17    = help: use `#![feature(generic_const_exprs)]` to allow generic const expressions
18
19 warning: cannot use constants which depend on generic parameters in types
20   --> $DIR/dependence_lint.rs:10:9
21    |
22 LL |     [0; size_of::<*mut T>()]; // lint on stable, error with `generic_const_exprs`
23    |         ^^^^^^^^^^^^^^^^^^^
24    |
25    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
26    = note: for more information, see issue #76200 <https://github.com/rust-lang/rust/issues/76200>
27    = note: `#[warn(const_evaluatable_unchecked)]` on by default
28
29 warning: cannot use constants which depend on generic parameters in types
30   --> $DIR/dependence_lint.rs:17:9
31    |
32 LL |     [0; if false { size_of::<T>() } else { 3 }]; // lint on stable, error with gce
33    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
34    |
35    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
36    = note: for more information, see issue #76200 <https://github.com/rust-lang/rust/issues/76200>
37
38 error: aborting due to 2 previous errors; 2 warnings emitted
39