1warning: cannot use constants which depend on generic parameters in types
2  --> $DIR/const-evaluatable-unchecked.rs:5:9
3   |
4LL |     [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
11warning: cannot use constants which depend on generic parameters in types
12  --> $DIR/const-evaluatable-unchecked.rs:16:21
13   |
14LL |         let _ = [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
20warning: cannot use constants which depend on generic parameters in types
21  --> $DIR/const-evaluatable-unchecked.rs:28:21
22   |
23LL |         let _ = [0; Self::ASSOC];
24   |                     ^^^^^^^^^^^
25   |
26   = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
27   = note: for more information, see issue #76200 <https://github.com/rust-lang/rust/issues/76200>
28
29warning: 3 warnings emitted
30
31