]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/min_const_generics/const-evaluatable-unchecked.stderr
min_const_generics: allow ty param in repeat expr
[rust.git] / src / test / ui / const-generics / min_const_generics / const-evaluatable-unchecked.stderr
1 warning: cannot use constants which depend on generic parameters in types
2   --> $DIR/const-evaluatable-unchecked.rs:5:9
3    |
4 LL |     [0; std::mem::size_of::<*mut T>()];
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `#[warn(const_evaluatable_unchecked)]` on by default
8    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
9    = note: for more information, see issue #76200 <https://github.com/rust-lang/rust/issues/76200>
10
11 warning: cannot use constants which depend on generic parameters in types
12   --> $DIR/const-evaluatable-unchecked.rs:16:13
13    |
14 LL |         [0; Self::ASSOC];
15    |             ^^^^^^^^^^^
16    |
17    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
18    = note: for more information, see issue #76200 <https://github.com/rust-lang/rust/issues/76200>
19
20 warning: 2 warnings emitted
21