]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/assoc_const_generic_impl.stderr
Merge pull request #2 from rust-lang/master
[rust.git] / src / test / ui / consts / assoc_const_generic_impl.stderr
1 warning: any use of this value will cause an error
2   --> $DIR/assoc_const_generic_impl.rs:11:34
3    |
4 LL |     const I_AM_ZERO_SIZED: ()  = [()][std::mem::size_of::<Self>()];
5    |     -----------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
6    |                                  |
7    |                                  index out of bounds: the len is 1 but the index is 4
8    |
9 note: the lint level is defined here
10   --> $DIR/assoc_const_generic_impl.rs:3:9
11    |
12 LL | #![warn(const_err)]
13    |         ^^^^^^^^^
14
15 error: erroneous constant encountered
16   --> $DIR/assoc_const_generic_impl.rs:13:18
17    |
18 LL |         let () = Self::I_AM_ZERO_SIZED;
19    |                  ^^^^^^^^^^^^^^^^^^^^^
20
21 error: aborting due to previous error; 1 warning emitted
22