summary refs log tree commit diff
path: root/src/test/ui/consts/assoc_const_generic_impl.stderr
blob: a114d5c6ccd14b26caea7c9d615cdb2d8556ada3 (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:9: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: lint level defined here
  --> $DIR/assoc_const_generic_impl.rs:1:9
   |
LL | #![warn(const_err)]
   |         ^^^^^^^^^

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

error: aborting due to previous error