]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/min_const_generics/const-evaluatable-unchecked.stderr
Add tests for `#[no_mangle]` in `impl` blocks that looks like generic `impl` blocks...
[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:21
13    |
14 LL |         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
20 warning: cannot use constants which depend on generic parameters in types
21   --> $DIR/const-evaluatable-unchecked.rs:28:21
22    |
23 LL |         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
29 warning: 3 warnings emitted
30