In the following example each uint8 item occupies a full 32-bit slot. ``` contract Test { uint8[] arr; function retrieve() public returns (uint8) { return arr[3]; } } ```
In the following example each uint8 item occupies a full 32-bit slot.