summary refs log tree commit diff
path: root/src/test/ui/consts/assoc_const_generic_impl.stderr
blob: cd27331ad512d159ac86a0330c57f3d6dde09a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
warning: any use of this value will cause an error
  --> $DIR/assoc_const_generic_impl.rs:11:34
   |
LL |     const I_AM_ZERO_SIZED: ()  = [()][std::mem::size_of::<Self>()];
   |     -----------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
   |                                  |
   |                                  index out of bounds: the len is 1 but the index is 4
   |
note: the lint level is defined here
  --> $DIR/assoc_const_generic_impl.rs:3:9
   |
LL | #![warn(const_err)]
   |         ^^^^^^^^^

error: erroneous constant encountered
  --> $DIR/assoc_const_generic_impl.rs:13:18
   |
LL |         let () = Self::I_AM_ZERO_SIZED;
   |                  ^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error; 1 warning emitted